Re: In memory index (current status in Lucene)

2013-07-04 Thread Ramkumar R. Aiyengar
Have you tried using MMapDirectory over a RAM disk (assuming you are on Linux)? You can avoid writing to disk (and thus the other ways to get to it persistently as Steven mentions), but still MMap it. On 1 Jul 2013 22:41, "Lance Norskog" wrote: > My current open source project is a Directory that

Re: Notifications of new Lucene-Releases

2014-10-07 Thread Ramkumar R. Aiyengar
There's also gene...@lucene.apache.org, which while technically not being just announcements is fairly low volume anyway.. On 6 Oct 2014 15:10, "Nils Knappmeier" wrote: > Hello, > > is there a good way to be notified about new releases of the Lucene-core, > other than checking the Lucene homepage

Re: Indexing Weighted Tags per Document

2014-10-28 Thread Ramkumar R. Aiyengar
There are a few approaches possible here, we had a similar use case and went for the second one below. I primarily deal with Solr, so I don't know of Lucene-only examples, but hopefully you can dig this up.. (1) You can attach payloads to each occurrence of the tag, and modify the scoring to use t