0
votes
0answers
84 views

Keep original token in Lucene analyzer tokenstream

I use Lucene 3.6.1 and C#. I would like to keep the original token in the tokenstream. I have a analyzer that tokenizes the stream using the standardtokenizer. Then uses a number of filters. I ...
0
votes
1answer
47 views

Extending TokenStream

I am trying to index into a document a field with one term that has a payload. Since the only constructor of Field that can work for me takes a TokenStream, I decided to inherit from this class and ...
2
votes
2answers
606 views

elasticsearch - Return the tokens of a field

How can I have the tokens of a particular field returned in the result For example, A GET request curl -XGET 'http://localhost:9200/twitter/tweet/1' returns { "_index" : "twitter", ...
0
votes
2answers
205 views

Lucene: Accessing payloads of results of a query

When Im searching for a query in Lucene, I receive a list of documents as result. But how can I get the hits within those documents? I want to access the payload of those word, which where found by ...
0
votes
0answers
75 views

Solutions for reprocessing text before break to terms in Lucene Solr

I am newbie and am playing with Lucene Solr to solve some requirements. Before text go to for index or query, it will be reprocessed, for example : "Hôm nay tôi đi học" =>"Hôm_nay tôi đi_học" , this ...
0
votes
1answer
100 views

Weighing the tokens generated from Lucene

I need a suitable weighing algo to return the most relevant tokens for a query ...i hv generated the tokens using Lucene 3.0 ..i m thinking of using the tf-idf concept?can someone suggest a better ...
5
votes
3answers
795 views

List of “tokens” on Lucene 3

I'm new to Lucene, i started learning the version 3 branch and there's one thing i don't understand (obviously because i'm not experienced in the subject). In Lucene 2.9, if i wanted a list of ...
30
votes
2answers
13k views

How to get a Token from a Lucene TokenStream?

I'm trying to use Apache Lucene for tokenizing, and I am baffled at the process to obtain Tokens from a TokenStream. The worst part is that I'm looking at the comments in the JavaDocs that address my ...
4
votes
2answers
1k views

Querying lucene tokens without indexing

I am using Lucene (or more specifically Compass), to log threads in a forum and I need a way to extract the keywords behind the discussion. That said, I don't want to index every entry someone makes, ...