In this tutorial I would like to talk a bit about Apache Lucene. Lucene is an open-source project that provides Java-based indexing and search technology. Using its API, it is easy to implement full-text search. I will deal with the Lucene Java version, but bear in mind that there is also a .NET port available under the name Lucene.NET, as well as several helpful sub-projects.
I recently read a great tutorial about this project, but there was no actual code presented. Thus, I decided to provide some sample code to help you getting started with Lucene. The application we will build will allow you to index your own source code files and search for specific keywords.
First things first, let's download the latest stable version from one of the Apache Download Mirrors. The version I will use is 3.0.1 so I downloaded the lucene-3.0.1.tar.gz bundle (note that the .tar.gz versions are significantly smaller than the corresponding .zip ones). Extract the tarball and locate the lucene-core-3.0.1.jar file which will be used later. Also, make sure the Lucene API JavaDoc page is open at your browser (the docs are also included in the tarball for offline usage). Next, setup a new Eclipse project, let's say under the name “LuceneIntroProject” and make sure the aforementioned JAR is included in the project's classpath.
Before we begin running search queries, we need to build an index, against which the queries will be executed. This will be done with the help of a class named IndexWriter, which is the class that creates and maintains an index. The IndexWriter receives Documents as input, where documents are the unit of indexing and search. Each Document is actually a set of Fields and each field has a name and a textual value. To create an IndexWriter, an Analyzer is required. This class is abstract and the concrete implementation that we will use is SimpleAnalyzer.
Enough talking already, let's create a class named “SimpleFileIndexer” and make sure a main method is included. Here is the source code for this class:
package com.javacodegeeks.lucene;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import org.apache.lucene.analysis.SimpleAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.store.FSDirectory;
public class SimpleFileIndexer {
public static void main(String[] args) throws Exception {
File indexDir = new File("C:/index/");
File dataDir = new File("C:/programs/eclipse/workspace/");
String suffix = "java";
SimpleFileIndexer indexer = new SimpleFileIndexer();
int numIndex = indexer.index(indexDir, dataDir, suffix);
System.out.println("Total files indexed " + numIndex);
}
private int index(File indexDir, File dataDir, String suffix) throws Exception {
IndexWriter indexWriter = new IndexWriter(
FSDirectory.open(indexDir),
new SimpleAnalyzer(),
true,
IndexWriter.MaxFieldLength.LIMITED);
indexWriter.setUseCompoundFile(false);
indexDirectory(indexWriter, dataDir, suffix);
int numIndexed = indexWriter.maxDoc();
indexWriter.optimize();
indexWriter.close();
return numIndexed;
}
private void indexDirectory(IndexWriter indexWriter, File dataDir,
String suffix) throws IOException {
File[] files = dataDir.listFiles();
for (int i = 0; i < files.length; i++) {
File f = files[i];
if (f.isDirectory()) {
indexDirectory(indexWriter, f, suffix);
}
else {
indexFileWithIndexWriter(indexWriter, f, suffix);
}
}
}
private void indexFileWithIndexWriter(IndexWriter indexWriter, File f,
String suffix) throws IOException {
if (f.isHidden() || f.isDirectory() || !f.canRead() || !f.exists()) {
return;
}
if (suffix!=null && !f.getName().endsWith(suffix)) {
return;
}
System.out.println("Indexing file " + f.getCanonicalPath());
Document doc = new Document();
doc.add(new Field("contents", new FileReader(f)));
doc.add(new Field("filename", f.getCanonicalPath(),
Field.Store.YES, Field.Index.ANALYZED));
indexWriter.addDocument(doc);
}
}
Let's talk a bit about this class. We provide the location of the index, i.e. where the index data will be saved on the disk (“c:/index/”). Then we provide the data directory, i.e. the directory which will be recursively scanned for input files. I have chosen my whole Eclipse workspace for this (“C:/programs/eclipse/workspace/”). Since we wish to index only for Java source code files, I also added a suffix field. You can obviously adjust those values to your search needs. The “index” method takes into account the previous parameters and uses a new instance of IndexWriter to perform the directory indexing. The “indexDirectory” method uses a simple recursion algorithm to scan all the directories for files with .java suffix. For each file that matches the criteria, a new Document is created in the “indexFileWithIndexWriter” and the appropriate fields are populated. If you run the class as a Java application via Eclipse, the input directory will be indexed and the output directory will look like the one in the following image:
OK, we are done with the indexing, let's move on to the searching part of the equation. For this, an IndexSearcher class is needed, which is a class that implements the main search methods. For each search, a new Query object is needed (SQL anyone?) and this can be obtained from a QueryParser instance. Note that the QueryParser has to be created using the same type of Analyzer that the index was created with, in our case using a SimpleAnalyzer. A Version is also used as constructor argument and is a class that is “Used by certain classes to match version compatibility across releases of Lucene”, according to the JavaDocs. The existence of something like that kind of confuses me, but whatever, let's use the appropriate version for our application (Lucene_30). When the search is performed by the IndexSearcher, a TopDocs object is returned as a result of the execution. This class just represents search hits and allows us to retrieve ScoreDoc objects. Using the ScoreDocs we find the Documents that match our search criteria and from those Documents we retrieve the wanted information. Let's see all of these in action. Create a class named “SimpleSearcher” and make sure a main method is included. The source code for this class is the following: package com.javacodegeeks.lucene;
import java.io.File;
import org.apache.lucene.analysis.SimpleAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.queryParser.QueryParser;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.ScoreDoc;
import org.apache.lucene.search.TopDocs;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.FSDirectory;
import org.apache.lucene.util.Version;
public class SimpleSearcher {
public static void main(String[] args) throws Exception {
File indexDir = new File("c:/index/");
String query = "lucene";
int hits = 100;
SimpleSearcher searcher = new SimpleSearcher();
searcher.searchIndex(indexDir, query, hits);
}
private void searchIndex(File indexDir, String queryStr, int maxHits)
throws Exception {
Directory directory = FSDirectory.open(indexDir);
IndexSearcher searcher = new IndexSearcher(directory);
QueryParser parser = new QueryParser(Version.LUCENE_30,
"contents", new SimpleAnalyzer());
Query query = parser.parse(queryStr);
TopDocs topDocs = searcher.search(query, maxHits);
ScoreDoc[] hits = topDocs.scoreDocs;
for (int i = 0; i < hits.length; i++) {
int docId = hits[i].doc;
Document d = searcher.doc(docId);
System.out.println(d.get("filename"));
}
System.out.println("Found " + hits.length);
}
}
We provide the index directory, the search query string and the maximum number of hits and then call the “searchIndex” method. In that method, we create an IndexSearcher, a QueryParser and a Query object. Note that QueryParser uses the name of the field that we used to create the Documents with IndexWriter (“contents”) and again that the same type of Analyzer is used (SimpleAnalyzer). We perform the search and for each Document that a match has been found, we extract the value of the field that holds the name of the file (“filename”) and we print it. That's it, let's perform the actual search. Run it as a Java application and you will see the names of the files that contain the query string you provided.The Eclipse project for this tutorial, including the dependency library, can be downloaded here.
UPDATE: You can also check our subsequent post, "Did you mean" feature with Apache Lucene Spell-Checker.
Enjoy!
Related Articles :
This was really useful and helped me get started.
ReplyDeleteI was stumbling with the other examples as they weren't exactly for the beginner and also most of them did not use the latest Lucene library leading to compilation errors at my end !
Thanks again :)
(In the second para, you say SimpleFileIndexer, when I think you mean SimpleSearcher. You might want to correct that !)
Hi preetsy,
ReplyDeleteGlad this article was helpful and many thanks for your correction!
Do you know Maven...?
ReplyDeleteIt's strange for me now to read things like "you can download from...", or "then configure your classpath..."
Hello, Fabrizio,
ReplyDeletethis is very helpful for beginners Lucene. I want to learn how to combine Lucene with Android. and
how to build client-server connection between Lucene with Android. Can you give me a recommendation, or know they have a web page that I can use.
Regards
Esen
The post so nice !
ReplyDeleteI have a questtion.
You know, after crawling, i had a lot of html files, so how can i stranslate those files to Documents which the IndexWriter receives as input.
Hello,
ReplyDeleteYou can create a Document for each of the HTML files (which are essentially plain text files).
http://lucene.apache.org/java/3_0_3/api/all/org/apache/lucene/document/Document.html
Then, you can add a Field with the contents of the HTML file:
http://lucene.apache.org/java/3_0_3/api/all/index.html?org/apache/lucene/document/Field.html
You can read the files with a FileReader:
http://download.oracle.com/javase/1.5.0/docs/api/java/io/FileReader.html
Regards,
Ilias
Oh, i got your idea.
ReplyDeleteMany thanks to you Ilias Tsagklis ^^.
I want to say sorry if the question below cause inconvinent for you.
ReplyDeleteThe question is related to Field.
For older version of lucene, we can create a Field by call Field.Text(name,value), but for newest version we can not use this way anymore.
That makes me confused.
So if u still remember knowleadge on it, would u give some suggestion to assimilate them.
Oh, i got the answare for the above question inside your code (line 76,77), So sorry for the inconvinent.
ReplyDeleteBy the way, i would like to say thank you!
Hey,
ReplyDeleteGlad to find out that everything worked!
Cheers
Any idea why the search would get no results?
ReplyDeleteHi Michael,
ReplyDeleteHave you used the code as provided above? It should run fine. Also, make sure you are using the same Lucene version (3.0.1 is used in the example) since the API changes rather often.
Regards
Ilias,
ReplyDeleteI tried to use it with the latest jar, 3.1.
I had to remove some methods due to deprecationI dont want to rely on old jar files, so, this may lose your interest?
In any case:
Analyzer analyzer = new SimpleAnalyzer(Version.LUCENE_31);
IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_31,analyzer);
IndexWriter indexWriter = new IndexWriter(
FSDirectory.open(indexDir),
config);
Then here is my search:
Directory directory = FSDirectory.open(indexDir);
IndexSearcher searcher = new IndexSearcher(directory);
QueryParser parser = new QueryParser(Version.LUCENE_31,
"contents", new SimpleAnalyzer(Version.LUCENE_31));
Query query = parser.parse(queryStr);
TopDocs topDocs = searcher.search(query, maxHits);
ScoreDoc[] hits = topDocs.scoreDocs;
for (int i = 0; i < hits.length; i++) {
int docId = hits[i].doc;
Document d = searcher.doc(docId);
System.out.println(d.get("filename"));
}
System.out.println("Found " + hits.length);
}
I can search by filename but I cannot search by contents.
Any ideas?
Man, you are awesome !
ReplyDeleteAt other forums and blogs people write but not in very understandable way & most of the answers are improper and incomplete. But here the way you explained everything is very simple, convenient, and understandable for everyone.
Thanks a lot. This helps a lot. I was trying to figure out how to use this software for last two days, now its working fine. Thank you very much.
nice tutorial,thanks
ReplyDeletewowwwww this like a that i found like a treasure thanx
ReplyDeletehow do i sarch contents of file irrespective of their extention or suffix? in the above example , you provided siuffux as java. How do i search in all files in a directory without specifying the suffix?
ReplyDelete