How to make a query that associates 2 index files

2008-05-06 Thread Michael Siu
Hi, I am a newbie to Lucene. I have a question for making a query that associate 2 index files: - One index has the content index for a list of documents and a key to the document. That means the Lucene document of this index contains 2 fields: the 'content' and the 'key'. - another index

RE: How to make a query that associates 2 index files

2008-05-06 Thread Michael Siu
(I may have the spelling wrong) who's put together some way to embed Lucene in an Oracle database, but that's magic to me. Why do you want to arrange your index this way in the first place? Perhaps there's a more specific answer waiting out there... Best Erick On Tue, May 6, 20

RE: How to make a query that associates 2 index files

2008-05-06 Thread Michael Siu
ified, so I assume your "keys" are something you created and NOT the lucene doc IDs. Best Erick On Tue, May 6, 2008 at 3:03 PM, Michael Siu <[EMAIL PROTECTED]> wrote: > My problem is: the [content] value can be huge. Duplicating it in more > than > one index document was

Limit of Lucene

2008-05-08 Thread Michael Siu
What is the limit of Lucene: # of docs per index? If RangeFilter.Bits(), for example, it initializes a bitset to the size of maxDoc from the indexReader. I wonder what happen if the # of docs is huge, say MaxInt (4G in 32bit or 2^63 in 64 bit)?

RE: Limit of Lucene

2008-05-08 Thread Michael Siu
, May 08, 2008 11:00 AM To: java-user@lucene.apache.org Subject: Re: Limit of Lucene Michael Siu skrev: > What is the limit of Lucene: # of docs per index? Integer.MAX_VALUE Multiple indices joined in a single MultiWhatNot is still limited to that number. > If RangeFilter.Bits(), for e

How international languages are supported in Lucene

2008-06-05 Thread Michael Siu
Would someone tell me how Lucene supports indexing and searching documents that contain international languages? What do I need to do in additions to using the StandardAnalyzer? Thanks.

RE: How international languages are supported in Lucene

2008-06-05 Thread Michael Siu
for the name of that language. HTH, Grant On Jun 5, 2008, at 11:32 AM, Michael Siu wrote: > Would someone tell me how Lucene supports indexing and searching > documents > that contain international languages? What do I need to do in > additions to > using t

RE: How international languages are supported in Lucene

2008-06-05 Thread Michael Siu
Thanks Erick. -Original Message- From: Erick Erickson [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2008 9:51 AM To: java-user@lucene.apache.org Subject: Re: How international languages are supported in Lucene See below On Thu, Jun 5, 2008 at 12:04 PM, Michael Siu <[EM