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
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
.
>
> 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
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
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
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
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
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,