Re: Question about Lucene in my project ..

2019-05-28 Thread Adrien Grand
Hi John, I heard of many users who used Lucene for this use-case, it's definitely a valid one. Indexes are stored mostly on disk, with a tiny part of them being held in memory to guarantee good access speed. Lucene supports both inverted indexes and KD trees up to 8 dimensions. Lookup, sorting an

Question about Lucene in my project ..

2019-05-27 Thread John Dale
Greetings; I'd like to play around with Lucene to offload some of my database lookups. Is this a valid use of Lucene in your opinion(s)? Indexes - they are stored on the file system as some kind of tree (I'm guessing)? Lookups and sorting - Can I lookup by date and sort asc/desc and paginate?