-1

I use Solr for couple of days and now I want to use it with my .NET application. I don't know where to start. What should I download (Solr, SolrNet, something else) ? And then how can I use it with my application, should I use .dll or NuGet Package ? Last question, could I do the exact same thing with SolrNet and Solr ?

J.doe
  • 37
  • 6

1 Answers1

0

SolrNet is a library that talks to Solr. It's not a .NET implementation of Solr.

How you decide to make the library available is up to you, but using nuget is the suggested way from the developers themselves (even if parts of the documentation says otherwise - but the versions on nuget are identicalwith the the latest nupkg builds from their build server now).

For how to use SolrNet, use the examples in the documentation.

MatsLindh
  • 49,529
  • 4
  • 53
  • 84
  • Ok, I use nuget I think it will work but do you know if there are examples for application in VB and not C# ? Because, I can "translate" some code from a language to another but for other part I don't know how to do that (for exemple `Startup.Init("http://localhost:8983/solr");`) – J.doe Jul 11 '18 at 13:03