up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question
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 '09 at 16:55
feedback

1 Answer

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|improve this answer
feedback

Your Answer

 
or
required, but never shown