f someone runs a query while the indexer is
> > updating?
> >
> > Ashley
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
> ---
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>
> -
> To uns
resulting Hits has the doc-id
(the number) in that index. And the Document contains the list of
(stored) fields.
>
> thanks for any help
>
> Paul
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTE
tures/filevault/
> [2] http://www.pgp.com/products/desktop/index.html
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
Cheolgoo,
additional commands, e-mail: [EMAIL PROTECTED]
>
>
--
Cheolgoo, Kang
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
How about creating a special-char-converting-reader like this?
public class LuceneReader extends Reader {
private Reader source = null;
private char buffer = (char) 0;
public LuceneReader( Reader sourceReader ) {
this.source = sourceReader;
}
public int read() {
char result = (char) 0;