I'm working on e-commerce site containing 200 000 products spread across 2 000 categories/sub categories with having a filters applied on its attributes per category, like brand, price range, features, etc.
The site is built up on nop commerce, asp.net mvc 3.0 with sql 2008.
Now I'm planning to implement Solr for Faceted Product Search and category pages with filtering.
What is the best approach should I use Ajax method for querying results from Solr using ajax-solr or implement it using solrnet? What is more responsive on client site? And what is fast to implement?
My goal is to implement it in most simplest way with search first and then later implement it for category pages.
I've reviewed the code and example available on solrnet, but still not very much clear as what does it integrate into it.
ajax-solr
stuff but if i were you i would have usedsolrnet
(as i only know of it) and then leverage the web api to return the results in json format, on the client side you can make ajax calls and manipulate the results as per your wish - John x