We're developing an ASP.NET MVC 3 website to be deployed on AppHarbor. The site will have at least 10,000 products on it. The user can search for products based on a tagging system (eg search for "color=blue" plus "size=10" plus "category=whatever"). So this system will be heavy on the db reads and light on the writes, and one of our main concerns is to keep the search feature blisteringly fast. To this end we'd also like to incorporate some caching of results.
Are we right or wrong in thinking this a good use case for using a NoSQL database (we've been looking at MongoDB, to be hosted on https://mongohq.com)?
If we do use MongoDB, what caching strategies should we look into?
Cheers!