vote up 0 vote down star

Am a newbie to Lucene an working on a city search API using Lucene. If user types in san francisco as search input, then it should give cities with exact match only and not San Jose /San Diego,etc.

How should i index city names in Lucene?and which Lucene analyzer and query class do i need to use?

flag
Why would you need Lucene for such a search? Is there a particular reason you decided to use Lucene instead of a simple SQL query? – itsadok Apr 8 at 16:55

1 Answer

vote up 2 vote down

Index your content with StandardAnalyzer. And then use PhraseQuery to search. For this, simply use the query string as "san francisco" with double quotes.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.