Tagged Questions
0
votes
0answers
21 views
Solr: Integer vs Text
I have a mysql database that stores records that are being indexed. In many cases the records only have one difference: a user id. Currently I am indexing this field as an integer in solr. I would ...
3
votes
1answer
91 views
Is it possible to search for words inside a Lucene index by part of speech
I have a large set of documents stored inside a Lucene index and I am using a customAnalyzer which basically does tokenization and stemming for the documents content.
Now, if I search inside the ...
1
vote
2answers
198 views
Why is my leading wildcard search failing in Solr?
I have a text field defined that I use copyField to fill with various source fields, and the goal is for this one field to be what I use to search my Solr index.
This text field is defined to use ...
0
votes
2answers
264 views
solr autosuggest with diacritics
I'm using solr4 with the TermsComponent Autosuggest (as described here)
We're doing a regEx "startsWith"-search, that ignores upper/lower-case, the whole searchQuery looks like this:
...
0
votes
2answers
290 views
Can not use ICUTokenizerFactory in Solr
I am trying to use ICUTokenizerFactory in Solr schema. This is how I have defined field and fieldType.
<fieldType name="text_icu" class="solr.TextField" positionIncrementGap="100">
...
1
vote
1answer
111 views
tokenizer for keepwordfilterfactory in solr
I want to use the solr keepwordfilterfactory but not getting the appropriate tokenizer for that. Use case is, i have a string say hi i am coming, bla-bla go out. Now from the following string i want ...
0
votes
2answers
93 views
How to tokenize phrase in Solr and get facets
I want something to tokenize the data based on the given phrases in the .txt file.
Normally the facet query gives me white space tokenized facets. But I want the result to be like this.
for e.g my ...
0
votes
2answers
64 views
formatting of files before indexing into solr server
I'm using the Solr server to provide search capability for a tool. I wanted to know if there is a facility provided by solr that will allow me to format some files before they are indexed ? more ...
4
votes
1answer
161 views
korean language tokenizer
What is the best tokenizer exist for processing Korean language?
I have tried CJKTokenizer in Solr4.0. It is doing the tokenization, but accuracy is very low.
0
votes
1answer
44 views
I cannot create text_general_edge_ngram field on solr
I want to search for a field on solr and I searched a lot before writing this, my problem is I add the fieldType name block to my schema.xml, but when I try to define a field, solr gives me some ...
1
vote
1answer
88 views
solr : how to boost query term after tokenizer
If the query word is "ABCD", then after being tokenized it is "A" "BC" "D". I want to boost term "BC", so the query word is like this:
A BC^10 D" and phrase query "ABCD"
All query words users typing ...
0
votes
1answer
135 views
solr fieldtype string or tokenizer
I need to search for a specific field using tokenizers and by string. I'll use tokenizer only if no result were found for the string one. Is there any way to do that?
1
vote
0answers
86 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
0answers
425 views
Solr Query - How to find elements in a array that both contain and exclude values
So I'm doing phrase searching in solr.
The phrases are stored in a field that must be an multiValued field simply
because of the type of the nature of the data it stores.
The issue is when we ...
0
votes
1answer
85 views
Search different tokens on different fields in Solr
I'd like to write a custom tokenizer in Apache Solr 3.6, that will try to identify certain types of tokens and depending on their type search on different fields.
For example, if the search were for ...
0
votes
1answer
45 views
Is there way to specify document aware token filter in SOlr?
I want to write TokenFilter which behaves differently depending on other InputSolrDocument fields.
I've tried to accomplish this via ThreadLocal and InputProcessor but they run in different ...
5
votes
1answer
311 views
Is there way to boost original term more while using Solr synonyms?
For example I have synonyms
laptop,netbook,notebook
in index_synonyms.txt
When user search for netbook I want to boost original text more then expanded by synonyms?
Is there way to specify this in ...
0
votes
1answer
208 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, ...
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 ...
1
vote
0answers
323 views
Custom tokenizer solr only is invoked at the first
I created a custom tokenizer, it seem work fine by checking with admin/analysis.jsp and with system.out log. However when I perform querying in the field which use this custom tokenizer, I saw that ...
2
votes
0answers
474 views
Matching all tokens in a Multivalued Field in Solr
I'm trying an approach to resolve a search requirement by tokenizing a serial string into individual terms inside of a multivalued field.
basically, each document may contain multiple values for ...
1
vote
0answers
252 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 ...
1
vote
2answers
389 views
Tokenize result of a NGramFilterFactory in Solr (query analyzer)
I'm using the NGramFilterFactory for indexing and querying.
So if I'm searching for "overflow" it creates an query like this:
mySearchField:"ov ve ... erflow overflo verflow overflow"
But if I ...
3
votes
2answers
594 views
solr not tokenizing protected words
I have documents in Solr/Lucene (3.x) with a special copy field facet_headline in order to have an unstemmed field for faceting.
Sometimes 2 ore more words are belong together, and this should be ...
5
votes
1answer
367 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 ...
1
vote
1answer
282 views
The proper Solr Tokenizer to tokenize text while preserving special characters
Which tokenizer is appropriate to do this:
input: "This-something is something."
output: ["] [This] [-] [something] [is] [something] [.] ["]
I tried with solr.WordDelimiterFilterFactory, but this ...
0
votes
4answers
3k views
Solr Dismax handler - whitespace and special character behaviour
I've got strange results when I have special characters in my query.
Here is my request :
q=histoire-france&start=0&rows=10&sort=score+desc&defType=dismax&qf=any^1.0&mm=100%
...
0
votes
1answer
172 views
how to use solr.analysis.WordDelimiterFilter standalone
At this point I'm pretty sure I've searched enough and I can't find a nice example of how put to work this class.
I've been looking for a good set of tokenizers and of course the solr/lucene ...
2
votes
1answer
2k views
difference between StandardTokenizerFactory and KeywordTokenizerFactory in SoLR
I am new to SoLR.I want to know when to use StandardTokenizerFactory and KeywordTokenizerFactory?
i read the docs on wiki apache website,but i am not getting it.
can anybody explain the difference ...
4
votes
0answers
295 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 {
...
3
votes
4answers
2k views
Solr: exact phrase query with a EdgeNGramFilterFactory
In Solr (3.3), is it possible to make a field letter-by-letter searchable through a EdgeNGramFilterFactory and also sensitive to phrase queries?
By example, I'm looking for a field that, if ...
1
vote
1answer
816 views
Solr Tokenizer Question
I have what I think is a simple solr exercise, but I'm unsure what to use.
I have a field of names, e.g. Joe Smith and Jack Daniels and Steve. They could each be one name or two names. I want to be ...
0
votes
1answer
671 views
How to use a tokenizer between filters in solr?
I want to use a schema where the whitespace-tokenizer ist called after one filter and after that all others filters shall be applied:
<filter class="solr.SynonymFilterFactory" ...
5
votes
1answer
358 views
Solr Tokenizer Injection
As an example I have a text field that might contain the following string:
"d7199^^==^^81^^==^^A sentence or two!!"
I want to tokenize this data but have each token contain the first part of the ...
0
votes
1answer
496 views
Problem in using Solr WordDelimiterFilter
I am doing some test using WordDelimiterFilter in Solr but it doesn't preserve the protected list of words which I pass to it. Would you please inspect the code and the output example and suggest ...
0
votes
1answer
596 views
solr multiple tokenizers for query
I am rather new to SolR. I would like to use multiple tokenizers.
I am using the standard tokenizer so that words get split via \t, space, comma, etc.
Now I would like to use an additional ...
2
votes
2answers
2k views
Indexing and Querying URLS in Solr
I have a database of URLs that I would like to search. Because URLs are not always written the same (may or may not have www), I am looking for the correct way to Index and Query urls.
I've tried a ...
3
votes
1answer
3k views
How to use NGramTokenizerFactory or NGramFilterFactory?
Recently, I am studying how to store and index using Solr. I want to do facet.prefix search. With whitespace tokenizer, "Where are you" will be splited into three words and indexed. If I search ...
1
vote
2answers
758 views
Solr WordDelimiterFilter + Lucene Highlighter
I am trying to get the Highlighter class from Lucene to work properly with tokens coming from Solr's WordDelimiterFilter. It works 90% of the time, but if the matching text contains a ',' such as ...
6
votes
2answers
3k views
Using multiple tokenizers in Solr
What I want to be able to do is perform a query and get results back that are not case sensitive and that match partial words from the index.
I have a Solr schema set up at the moment that has been ...
0
votes
1answer
667 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?
3
votes
1answer
2k views
Term extraction: Generatings tags out of text
How to get the same results as http://developer.yahoo.com/search/content/V1/termExtraction.html
This question has been asked quite a few times before.
...

