Re: Custom scoring algorithm and Explanation extending.

2017-11-20 Thread Adrien Grand
Hi Vadim, Le jeu. 16 nov. 2017 à 18:09, Vadim Gindin a écrit : > 1. I would like to use my custom scoring algorithm. Is it make sense to use > Lucene with other scoring algorithm? What is the best way for that - > implement Similarity and own Queries? > It really depends what you are after. Sim

Re: Optimize FTS memory footprint

2017-11-20 Thread Michael McCandless
Are you sure its FSTs using your heap? Do you have many index fields that have high cardinality? Or many suggesters? Mike McCandless http://blog.mikemccandless.com On Thu, Nov 16, 2017 at 5:03 PM, Eli Revach wrote: > Hi > I am using Elasticserach 1.7.5 , our segment memory allocation per nod

Re: To get the term-freq

2017-11-20 Thread Michael McCandless
You could use the PostingsEnum API, advance to your document, then call freq()? I believe there is also a function query based on the term doc freq. Mike McCandless http://blog.mikemccandless.com On Fri, Nov 17, 2017 at 11:37 AM, Ahmet Arslan wrote: > Hi, > > I am also intersted into the answ