Re: In memory index (current status in Lucene)

2013-07-02 Thread Toke Eskildsen
On Mon, 2013-07-01 at 16:07 +0200, Emmanuel Espina wrote: Just to add to this conversation, I found an interesting link to Mike's blog about memory resident indexes (using another virtual machine) http://blog.mikemccandless.com/2012/07/lucene-index-in-ram-with-azuls-zing-jvm.html Testing the

Facets ordering

2013-07-02 Thread Nicola Buso
Hi, I was looking to change the order of the facet results; in this case I would like to order by the facet label instead of the facet value (count). An example is a facet on dates; suppose the facet is saved as /MM/dd, I would like obtain values for this date ordered by the date; i.e. with

Re: Facets ordering

2013-07-02 Thread Shai Erera
Do you want your top-K to be computed by label too? Or first deduce the top-K facets, then sort them otherwise? Shai On Tue, Jul 2, 2013 at 6:36 PM, Nicola Buso nb...@ebi.ac.uk wrote: Hi, I was looking to change the order of the facet results; in this case I would like to order by the

Re: Facets ordering

2013-07-02 Thread Nicola Buso
Hi, I was thinking about it, what is needed is the 1st, than, supposing FacetRequest maxCount is setted to 10 I want the latest 10 years with respective counts, also if on year 2000 there are more counts than in 2013. Nicola. On Tue, 2013-07-02 at 18:40 +0300, Shai Erera wrote: Do you want

supply term frequency directly

2013-07-02 Thread Michael Sokolov
Is there a way to add a document to the index by supplying terms and term frequencies directly, rather than via Analysis and/or TokenStream? I ask because I want to model some data where I know the term frequencies, but there is no underlying text document to be analyzed. I could create one