lucene

Topics related to lucene:

Getting started with lucene

Apache Lucene is a Java-based full text search library.

Analysis

Queries

Deleting Documents using a Multi-Term Query

Caveats with the Choice of Analyzer

It's not immediately obvious, but the analyzer that you are using makes a huge difference to the way your query is run. This is because the StandardAnalyzer filters out common English words like "the" and "a". You might want to pick a different analyzer (like KeywordAnalyzer) so that it matches exactly. This obviously depends on you application of Lucene of course.