Reputation: 11
I need to use full text search with SQL Server 2005 and I have explored its inbuilt search approach (SQL Server full text indexing) but it seems less powerful.
I have also looked features of Lucene.
Now my questions: Is is possible to integrate Lucene and SQL server in anyway?
Thanks, HB
Upvotes: 1
Views: 628
Reputation: 8563
You should look at Apache Solr - built around Lucene, and use Solrnet to query Solr. Solrnet offers a quick and easy way of interacting with Solr from ASP.NET.
Upvotes: 0
Reputation: 6928
If you use Hibernate, Hibernate Search is a nice option.
It can index and synchronize your data to Lucene indexes. You can issue text queries via the Hibernate search API and it will return the domain objects matching the queries.
Upvotes: 0