Re: Concurrent read and write

2005-01-23 Thread Cheolgoo Kang
f someone runs a query while the indexer is > > updating? > > > > Ashley > > > > - > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > ---

Re: modifying existing index

2004-11-23 Thread Cheolgoo Kang
> > > > - > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > - > To uns

Re: retrieving added document

2004-11-23 Thread Cheolgoo Kang
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

Re: Encrypted indexes

2004-10-13 Thread Cheolgoo Kang
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,

Re: View lucene index file

2004-09-09 Thread Cheolgoo Kang
additional commands, e-mail: [EMAIL PROTECTED] > > -- Cheolgoo, Kang - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problems with special characters

2004-07-02 Thread Cheolgoo Kang
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;