0

I'm working on e-Commerce site which is based on ASP.NET MVC3. I've implemented SolrNet 3.6 for improving search.

For that, Only one solr instance is running which is served by Tomcate Apache 7.0 .

My client is demanding to develop another e-Commerce site using SolrNet which should be by served same Tomcat server.

So is it possible to invoke multiple solr instance having different data? If yes then How can I achieve this?

user2672165
  • 2,986
  • 19
  • 27
Dharmik Bhandari
  • 1,702
  • 5
  • 29
  • 60

1 Answers1

3

To do this, you will need to change your setup to have multiple cores. Your Solr install should have an example configuration for this kind of setup under example/multicore. In case you can't find it, have a look in Solr svn repository.

See also Tomcat SOLR multiple cores setup

Community
  • 1
  • 1
jpountz
  • 9,904
  • 1
  • 31
  • 39
  • If you follow the guidance outlined by @jpountz, each core will have a separate directory with its own conf and data directory. – Paige Cook Aug 17 '12 at 11:45