RE: Fuzzy search in solr

2013-05-26 Thread Sagar Chaturvedi
: Friday, May 24, 2013 6:40 PM To: solr-user@lucene.apache.org Subject: Re: Fuzzy search in solr Fuzzy search is the syntax for a term, not a handler. For example: alpha~1 will match terms that have an editing distance of 0 or 1 from alpha. All of the search handlers support fuzzy search. Some query

Re: Fuzzy search in solr

2013-05-26 Thread Jack Krupansky
Fuzzy query is invoked just like any other query: .../select?q=alpha~1 -- Jack Krupansky -Original Message- From: Sagar Chaturvedi Sent: Sunday, May 26, 2013 11:27 PM To: solr-user@lucene.apache.org Subject: RE: Fuzzy search in solr Thank you jack for the response. Fuzzy search

Fuzzy search in solr

2013-05-24 Thread Sagar Chaturvedi
Hi, How to perform fuzzy search in solr? Which request handler is used for fuzzy search by default? Regards, Sagar DISCLAIMER: --- The contents of this e-mail and any

Re: Fuzzy search in solr

2013-05-24 Thread Jack Krupansky
parser do. But, are you sure you really mean fuzzy search, as opposed to, say, spellcheck? -- Jack Krupansky -Original Message- From: Sagar Chaturvedi Sent: Friday, May 24, 2013 2:43 AM To: solr-user@lucene.apache.org Subject: Fuzzy search in solr Hi, How to perform fuzzy search

Re: Question about Fuzzy search in Solr

2012-09-17 Thread Rafał Kuć
Hello! Is this what you are looking for https://lucene.apache.org/core/old_versioned_docs/versions/3_0_0/queryparsersyntax.html#Fuzzy%20Searches ? -- Regards, Rafał Kuć Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch - ElasticSearch Hi, I need to know how we can implement fuzzy

Re: Question about Fuzzy search in Solr

2012-09-17 Thread Rahul Warawdekar
Thanks. Is any extra configuration from the Solr side to make this work ? Any additional text files like synonyms.txt, any additional fields or any changes in schema.xml or solrconfig.xml ? On Mon, Sep 17, 2012 at 4:45 PM, Rafał Kuć r@solr.pl wrote: Hello! Is this what you are looking for

Re: Question about Fuzzy search in Solr

2012-09-17 Thread Rafał Kuć
Hello! There is no need to include any changes or additional component to have fuzzy search working in Solr. -- Regards, Rafał Kuć Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch - ElasticSearch Thanks. Is any extra configuration from the Solr side to make this work ? Any

Re: Question about Fuzzy search in Solr

2012-09-17 Thread Rahul Warawdekar
Got it. Thanks Rafał ! On Mon, Sep 17, 2012 at 6:37 PM, Rafał Kuć r@solr.pl wrote: Hello! There is no need to include any changes or additional component to have fuzzy search working in Solr. -- Regards, Rafał Kuć Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch

Re: Question about Fuzzy search in Solr

2012-09-17 Thread Jack Krupansky
. Be aware that if you use fuzzy query in 3.6/3.6.1 or earlier, it will change when you go to 4.0. -- Jack Krupansky -Original Message- From: Rafał Kuć Sent: Monday, September 17, 2012 7:15 AM To: solr-user@lucene.apache.org Subject: Re: Question about Fuzzy search in Solr Hello

Re: Question about Fuzzy search in Solr

2012-09-17 Thread Rahul Warawdekar
, September 17, 2012 7:15 AM To: solr-user@lucene.apache.org Subject: Re: Question about Fuzzy search in Solr Hello! Is this what you are looking for https://lucene.apache.org/**core/old_versioned_docs/**versions/3_0_0/** queryparsersyntax.html#Fuzzy%**20Searcheshttps://lucene.apache.org/core

Re: Fuzzy search and solr 4.0

2011-05-19 Thread Michael McCandless
Well the good news is FuzzyQuery is indeed much faster in Lucene/Solr 4.0. But the bad news is... FuzzyQuery won't do what you need here. You need some sort of FuzzyPhraseQuery, which is able to replace terms similar to one another (comp/company/corporation) by some metric. I don't know of

Re: Fuzzy search and solr 4.0

2011-05-19 Thread Guilherme Aiolfi
You, or any other solr member, knows a good fuzzy string matching library to recommend? On Thu, May 19, 2011 at 9:39 AM, Michael McCandless luc...@mikemccandless.com wrote: Well the good news is FuzzyQuery is indeed much faster in Lucene/Solr 4.0. But the bad news is... FuzzyQuery won't

Fuzzy search and solr 4.0

2011-05-18 Thread Guilherme Aiolfi
Hi, I want to do a fuzzy search that compare a phrase to a field in solr. For example: abc company ltda will be compared to abc comp, abc corporation, def company ltda, nothing to match here. The thing is the it has to always returns documents sorted by its score. I've found some good