2
votes
0answers
101 views

ElasticSearch — incorrect value in one subfield of a multi field

ElasticSearch indexes my business documents with a multi-field for 'name', so that I can weight different degrees of name matching (exact match, one of many words, etc). Here's a snippet from my ...
4
votes
1answer
162 views

Tokenize text for search in Python

Looking for strategies on how to tokenize text for search, and some ideas on how to implement them. Specifically, we are trying to tokenize user generated business reviews to help with our business ...
2
votes
1answer
137 views

Control order of token filters in ElasticSearch

Trying to control the order that token filters are applied in ElasticSearch. I know from the docs that the tokenizer is applied first, then the token filters, but they do not mention how the order ...
1
vote
0answers
77 views

Solr StandardTokenizerFactory keep one char

I want to keep one character the "@" sign when using the standardtokenizer from solr/lucene, and let it do its work. Is that possible? I've been going through the different tokenizers and it seems ...
0
votes
1answer
201 views

How to index multiple words as a single tokens in hibernate search?

I am using hibernate search with solr in my project and one of my use case would require data to be tokenized and indexed as follows: One of my database field is a varchar and has values : New Road, ...
1
vote
0answers
242 views

Solr Arabic search not working unless words are neighbors

So far my solr deployment for a set of Arabic data I have is working great. The stemming and normalization are all quite fantastic. The problem now is that the arabic search does not work UNLESS the ...
5
votes
1answer
355 views

How to stop the result in solr, when phrase containing a stopword?

I have a problem while searching with Solr a phrase which has stopwords. Solr send result with stopword and this is not my expected output. I added a word "test" in stopwords.txt file. In schema.xml ...
4
votes
0answers
281 views

Solr(Lucene) is indexing only the first document after adding a custom TokenFilter

I created a custom token filter which concatenates all the tokens in the stream. This is my incrementToken() function public boolean incrementToken() throws IOException { ...
4
votes
1answer
1k views

StandardTokenizer behaviour

Given the code is running under Lucene 3.0.1 import java.io.*; import org.apache.lucene.analysis.*; import org.apache.lucene.util.Version; public class MyAnalyzer extends Analyzer { public ...
0
votes
1answer
655 views

What is the difference between EdgeNGramTokenizerFactory EdgeNGramFilterFactory in SOLR?

What is the difference between these two filters? They seem to have the same effect? Can anyone supply an example of how they are applied to some text?
1
vote
1answer
356 views

Lucene Query WITHOUT Operators

I am trying to use Lucene to search for names in a database. However, some of the names contain words like "NOT" and "OR" and even "-" minus symbols. I still want the different tokens inside the names ...
6
votes
3answers
1k views

Google-like search query tokenization & string splitting

I'm looking to tokenize a search query similar to how Google does it. For instance, if I have the following search query: the quick "brown fox" jumps over the "lazy dog" I would like to have a ...
3
votes
6answers
1k views

Implementing keyword comparison scheme (reverse search)

I have a constantly growing database of keywords. I need to parse incoming text inputs (articles, feeds etc) and find which keywords from the database are present in the text. The database of ...