3

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?

Ofer Zelig
  • 17,068
  • 9
  • 59
  • 93
Mersad
  • 377
  • 2
  • 8
  • 2
    possible 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 Answers4

4

I'm not aware of any Solr port for .net, you can have a look at this question to know more. I would use the original Solr written in Java, and a client library written in the language you prefer, for example solrnet, to communicate with it.

Community
  • 1
  • 1
javanna
  • 59,145
  • 14
  • 144
  • 125
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