Re: full name free text search problem

2018-01-31 Thread Alexandre Rafalovitch
You need to tokenize the full name in several different ways and then search both (all) tokenization versions with different boosts. This way you can tokenize as full string (perhaps lowercased) and then also on white space and then maybe even with phonetic mapping to catch spellings. You can see

Re: full name free text search problem

2018-01-31 Thread Alessandro Benedetti
"I am getting the records matching the full name sorted by distance. If the input string(for ex Dae Kim) is provided, I am getting the records other than Dae Kim(for ex Rodney Kim) too at the top of the search results including Dae Kim just before the next Dae Kim because Kim is matching with all

Re: full name free text search problem

2018-01-30 Thread Rahul Sood
Hi Deepak, Look at the score of your response results. You can do this in Debug mode. Rahul. On Wed, Jan 31, 2018 at 4:18 AM, Deepak Udapudi wrote: > Hi all, > > I have the below scenario in full name search that we are trying to > implement. > > Solr configuration :- > > fieldType name="keyword

full name free text search problem

2018-01-30 Thread Deepak Udapudi
Hi all, I have the below scenario in full name search that we are trying to implement. Solr configuration :- fieldType name="keywords_text" class="solr.TextField"> Scenario :- Solr configuration has office name, facility name and

Re: text search problem

2014-07-23 Thread Josh Lincoln
gt; > When I check with &hl-on, it has ABC and get the results. How can > > I avoid this situation. > > > > Thanks > > > > Ravi > > > > > > -----Original Message- > > From: Erick Erickson [mailto:erickerick...@gmail.com] > > Sent: Saturday, July 19

Re: text search problem

2014-07-21 Thread Erick Erickson
> From: Erick Erickson [mailto:erickerick...@gmail.com] > Sent: Saturday, July 19, 2014 4:40 PM > To: solr-user@lucene.apache.org > Subject: Re: text search problem > > Try adding &debug=all to the query and see what the parsed form of the > query is, likely you're &g

RE: text search problem

2014-07-21 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
14 4:40 PM To: solr-user@lucene.apache.org Subject: Re: text search problem Try adding &debug=all to the query and see what the parsed form of the query is, likely you're 1> using phrase queries, so "broadway hotel" requires both words in the 1> text or 2> if you're n

Re: text search problem

2014-07-19 Thread Erick Erickson
Try adding &debug=all to the query and see what the parsed form of the query is, likely you're 1> using phrase queries, so "broadway hotel" requires both words in the text or 2> if you're not using phrases, you're searching for the AND of the two terms. But debug=all will show you. Plus, take a l

text search problem

2014-07-18 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi, Below is the text_general field type when I search Text:Boradway it is not returning all the records, it returning only few records. But when I search for Text:*Broadway*, it is getting more records. When I get into multiple words ln search like "Broadway Hotel", it may not get "Broadway"