I’m programming en ASP MVC3 application. One part of that application should be a product list containing faceted search, full text search and distance search. After a while of research I found SOLR and SOLRNet. I have installed Solr on a Tomcat 7 and included a DataImportHandler for Indexing data from my MS SQL database. Now I have a problem perhaps only an understanding problem:
The facets I want to use are placed in the database and could change every time. Where I have to implement the facet indexing? In the ASP MVC application or in the data-config of solr?
How does solr work in combination with solrnet, solr have to get a new index of my database for each search, correct?
How to make solr indexing the data from solrnet?
Have I to rebuild the index after every change?
A lot of questions and I would be happy if someone knows the answer of some of them. Thank you very much and have a nice weekend!