We are going to use Solr
as our search server, but all of our web interface is in ASP, and our data is an MS SQL Server database. What is the best solution? Shall we use Java-based or Dot Net-based version of Solr?
Asked
Active
Viewed 569 times
3

Ofer Zelig
- 17,068
- 9
- 59
- 93

Mersad
- 377
- 2
- 8
-
2possible duplicate of [Is Solr available for .Net?](http://stackoverflow.com/questions/1749314/is-solr-available-for-net) – Mauricio Scheffer Feb 19 '12 at 16:36
-
FYI - you can always use Solr and use the Data Import Handler (DIH) to pull you data from your database. The ability to push changes directly to SOLR are great, but I just wanted to mention an alternative. – Nathan Hall Jun 23 '15 at 16:53
-
solrnet is good option !! – Shan Mar 21 '17 at 19:29
4 Answers
0
You can use Solr.Net client or you can create your own client for Lucene.Net like this. There is no Solr created in .Net available but you can create one since the engine is available in .Net.

Vuk Vasić
- 1,398
- 10
- 27
0
Best suitable is solrnet which is up to date with all latest versions of Solr and much mature (minimum issues).

Behzad Qureshi
- 546
- 1
- 7
- 16
0
Check out this: Lucene.net

Ofer Zelig
- 17,068
- 9
- 59
- 93
-
1Oh, it was hard to figure in the first place. I've now edited your question and it's much clearer now. – Ofer Zelig Feb 19 '12 at 08:59