Unsubscribing problems

2016-09-07 Thread Robust Links
Hi I am not sure who to report this to but I have tried to unsubscribe from lucene lists (including java-user@lucene.apache.org) without success many times now. I have sent an unsubscribe email to all of the list servers on this page, with no bounces. https://lucene.apache.org/core/discussion

Re: custom collector

2015-04-30 Thread Robust Links
Hi West thank you for the help. I will try your suggestion. thank you again Peyman On Wed, Apr 29, 2015 at 10:01 PM, west suhanic wrote: > Hi Robust Links: > > I think you want to build a class that implements the LeafCollector. > For example: > > public class the

Re: custom collector

2015-04-29 Thread Robust Links
. > > Not sure it applies in your situation as you didn't state the use-case > but thought I'd at least mention it. > > Best, > Erick > > On Wed, Apr 29, 2015 at 7:41 AM, Robust Links > wrote: > > Hi > > > > I need help porting my lucene code fro

custom collector

2015-04-29 Thread Robust Links
Hi I need help porting my lucene code from 4 to 5. In particular, I need to customize a collector (to collect all doc Ids in the index - which can be >30MM docs..). Below is how I achieved this in lucene 4. Is there some guidelines how to do this in lucene 5, specially on semantics changes of Atom

Re: for check similarity of two sentences

2015-04-02 Thread Robust Links
Hi Heshan one approach could be something like this: 1- vectorize each ngram of each sentence. One vectorization strategy is to use word2vec (the deep learning package). i believe someone has ported word2vec (originally in C) to Lucene. do google search 2- aggregate each word vector (i.e some clu

Custom solr.TrieDateField collector

2014-08-18 Thread Robust Links
Hi I have a SOLR (4.7.1) tire DateField with dates. I would like to retrieve the values of this field via a custom lucene collector. For String fields I use the following pattern BinaryDocValues field = FieldCache.DEFAULT.getTerms(ctx.reader(),"entitledsites",false); in setNextReader() method, a

Re: Custom solr.TrieDateField collector

2014-08-18 Thread Robust Links
ate fields? thank you On Mon, Aug 18, 2014 at 10:28 AM, Robust Links wrote: > Hi > > I have a SOLR (4.7.1) tire DateField with dates. I would like to retrieve > the values of this field via a custom lucene collector. For String fields I > use the following pattern

Custom solr.TrieDateField collector

2014-08-18 Thread Robust Links
Hi I have a SOLR (4.7.1) tire DateField with dates. I would like to retrieve the values of this field via a custom lucene collector. For String fields I use the following pattern BinaryDocValues field = FieldCache.DEFAULT.getTerms(ctx.reader(), "entitledsites",false); in setNextReader() method,