Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


Whats the fastest way to loading all of the values of a lucene index field in memory, I have large lucene index (1.6 GB) i need to load all of the (ID) field into memory with least overhead on memory I'm getting OutOfMemoryException when i iterate through all of the items and read that field (this is also very slow for loading field of index i need a solution with better performance).

share|improve this question
1  
Can you explain how you currently do it? And/or post the code. – mbonaci Mar 10 '11 at 17:50
1.6 GiB sounds like a big index. I've got an index of 1.4 million works, about 40 fields, and it takes 1.1 GiB non-optimized. Could you give us some numbers for your index, perhaps checking if you store fields unnecessarily? – Simon Svensson Mar 30 '11 at 19:23

1 Answer

You may need to address why you need to load of your Fields into memory in the first place?

Have you tried doing a search using a TermQuery and a Term that simply contains the field you want to load? e.g. new Term("ID").

You then wont need to load all values into memory to iterate over them. Instead, use a FieldSelector to ensure only a single field is loaded when you load each search result.

Otherwise, use Lucene's FieldCache to get the values for all your ID fields.

share|improve this answer
FieldCache is the way to go. It wont require you to store the fields, it's enough having them indexed non-analyzed. – Simon Svensson Mar 30 '11 at 19:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.