lucene.net tutorial with lucene 2.9.2

step 1 - create a new console application

Then extract the Lucene.Net.dll from the Apache-Lucene.Net-2.9.2-incubating.bin.zip file into your lib folder.

You'll notice lots of other bits in  this zip file. Especially of interest to you later might be the stuff in the contrib folder. I might get to that in a later tutorial, but for now lets keep it simple.

step 2 - add a reference to the lucene.net.dll

Your references should look like this

step 3 - create a document

Ok the next step is to create a simple Document with the appropriate fields which you'll want to search on. In our case we're going to create 3 cars. a Ford Fiesta, a Ford Focus and a Vauxhall Astra.

01using System;
02using System.IO;
03using Lucene.Net.Analysis;
04using Lucene.Net.Analysis.Standard;
05using Lucene.Net.Documents;
06using Lucene.Net.Index;
07using Lucene.Net.Store;
08using Directory = Lucene.Net.Store.Directory;
09using Version = Lucene.Net.Util.Version;
10 
11namespace LuceneNet.App
12{
13    class Program
14    {
15        static void Main(string[] args)
16        {
17            var fordFiesta = new Document();
18            fordFiesta.Add(new Field("Id""1", Field.Store.YES, Field.Index.NOT_ANALYZED));
19            fordFiesta.Add(new Field("Make""Ford", Field.Store.YES, Field.Index.ANALYZED));
20            fordFiesta.Add(new Field("Model""Fiesta", Field.Store.YES, Field.Index.ANALYZED));
21 
22            var fordFocus = new Document();
23            fordFocus.Add(new Field("Id""2", Field.Store.YES, Field.Index.NOT_ANALYZED));
24            fordFocus.Add(new Field("Make""Ford", Field.Store.YES, Field.Index.ANALYZED));
25            fordFocus.Add(new Field("Model""Focus", Field.Store.YES, Field.Index.ANALYZED));
26 
27            var vauxhallAstra = new Document();
28            vauxhallAstra.Add(new Field("Id""3", Field.Store.YES, Field.Index.NOT_ANALYZED));
29            vauxhallAstra.Add(new Field("Make""Vauxhall", Field.Store.YES, Field.Index.ANALYZED));
30            vauxhallAstra.Add(new Field("Model""Astra", Field.Store.YES, Field.Index.ANALYZED));
31 
32 
33 
34            Directory directory = FSDirectory.Open(new DirectoryInfo(Environment.CurrentDirectory + "\\LuceneIndex"));
35            Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_29);
36 
37 
38            var writer = new IndexWriter(directory, analyzer, true, IndexWriter.MaxFieldLength.LIMITED);
39            writer.AddDocument(fordFiesta);
40            writer.AddDocument(fordFocus);
41            writer.AddDocument(vauxhallAstra);
42 
43            writer.Optimize();                       
44            writer.Close();
45             
46 
47             
48        }
49    }
50}

In the code above you can see we firstly create a series of Document types. For each document we then define a series of Fields. You might think this looks similar to SQL where you create the table schema and each Document is like a row in the table! There's an important difference here, documents do not have a schema. If we'd wanted to I could of given the 2 Ford documents an extra field called SpecialFordField which wouldn't have existed at all on the Vauxhall documents.

step 4 - create a directory

Now we need to sort out where we're going to store our index:

1Directory directory = FSDirectory.Open(new DirectoryInfo(Environment.CurrentDirectory + "\\LuceneIndex"));

The above code creates a Directory. this is the place in which we store or write our Index to. In this case we use the FSDirectory.Open() factory method to create an Lucene Index on the FileSystem in a folder/directory calledLuceneIndex. We could of equally created new RamDirectory() and just stored our index in RAM for super high performance but Lucene is so fast, that for the most part this is unecessary.

step 5 - the analyzer

1Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_29);

We next create a new Analyzer which essentially turns our text into Tokens which are stored in our Index.

step 6 - writing the documents to the index

Finally we actually have to write the Documents to our Index

1var writer = new IndexWriter(directory, analyzer, true, IndexWriter.MaxFieldLength.LIMITED);
2            writer.AddDocument(fordFiesta);
3            writer.AddDocument(fordFocus);
4            writer.AddDocument(vauxhallAstra);
5 
6            writer.Optimize();                       
7            writer.Close();

We define an IndexWriter telling it to use our Directory and Analyzer defined above. We then add all the documents to the IndexWriter call the writer.Optimize() which essentally does the semi-equivilent of a defrag on the index and then finally writer.Close(). At this point we have a perfectly good index to search.

step 7 - opening the index for searching

Ok now let's actually search our newly created index.

 

1IndexReader indexReader = IndexReader.Open(directory, true);
2            Searcher indexSearch = new IndexSearcher(indexReader);

 

We firstly need to open an IndexReader here we're passing in the Directory we created above and wrote our Documents into. An IndexReader simply reads the index it doesn't do the magic search part. For that we need aSearcher in our case a IndexSearcher which obviously needs to read our index internally.

step 8 - creating our search query

Prepare to search with a simple search query. The reality is that it's not quite as simple as typing in a Google query, though it's not far off.

 

1var queryParser = new QueryParser(Version.LUCENE_29, "Make", analyzer);
2            var query = queryParser.Parse("Ford");

 

Here we're creating a QueryParser and specifying that we want to search the Make field of our Index. It is totally possible to search more than one field but for simplicity I'm not going to do that here. We also use the sameStandardAnalyzer we use above to apply the same tokenization to our query.

Finally we parse our raw query Ford. So hopefully we'll be able to find some Ford cars in our Index specifically in the Make field.

step 9 - performing the search

 

1Console.WriteLine("Searching for: " + query.ToString());
2            TopDocs resultDocs = indexSearch.Search(query, indexReader.MaxDoc());
3             
4            Console.WriteLine("Results Found: " + resultDocs.totalHits);

 

Above we perform our search and return the TopDocs that match. Hopefully this should be 2 results if yours is anything like mine. There are indeed 2 Fords in our index.

step 10 - displaying our search results

Last part. we just quickly loop through and print out the cars that match.

 

1var hits = resultDocs.scoreDocs;
2            foreach (var hit in hits)
3            {               
4                var documentFromSearcher = indexSearch.Doc(hit.doc);
5                Console.WriteLine(documentFromSearcher.Get("Make") + " " + documentFromSearcher.Get("Model"));
6            }
7 
8            indexSearch.Close();
9            directory.Close();

 

That's it, good luck, hope you find what you're looking for.

原文地址:https://www.cnblogs.com/top5/p/2400402.html