Click here to Skip to main content
15,887,328 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
For my project purpose, I need to implement a search capability which will search a string from around 1000 Microsoft word file. I decided to use Lucene.net for that purpose.I need to point out a particular directory and Lucene.net will search from that.
Can you please provide me an useful link to search keyword from a directory using Lucene.net. Or do you have any better approach apart from Lucene.net?
Posted
Comments
BillWoodruff 5-Dec-15 22:51pm    
Developers (dev @ lucenenet.apache.org) - the developers mailing list is used to discuss the technical future of Lucene.Net. This mailing list also recieves JIRA items and comments

Users (user @ lucenenet.apache.org) - a list for general how-to questions and getting help from the community. Most (if not all) of our developers are also subscribed to this list

Commits (commits @ lucenenet.apache.org) - to keep track of all source code submits to our repository.

To subscribe to the mailing lists, send an email to list-subscribe@lucenenet.apache.org. To unsubscribe, send an email to list-unsubscribe@lucenenet.apache.org.

1 solution

Lucene.net requires that you create an index before you can use Lucene.Net to query. Try going to the CodeProject Search page, or Google if you must. There is a lot of information about using Lucene and Lucene.Net available. In fact, CodeProject uses Lucene.Net for its Search.

Indexing requires you to read all the files, or other content and store them as a collection of properties that you can search.

I found the book "Lucene in Action", second addition, quite useful.

Also, RavenDb uses Lucene.Net and ElasticSearch uses Lucene, so may give you a faster start to creating and querying your data.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900