I'm writing a website (using Entity Framework, MySQL, .net 4, C#) which have a lot of categories with subcategories down to 3 levels deep once the user find what he was looking for, each "product" can have different attributes for example:
"Restaurants" can have: average dish price, kids menu available and "Gym" can have: swimming pool available, personal trainer available
I'm new to C# and cant figure out how to implement at least simliar to faceted search solution without using library Lucene.NET and search engine Solr, especially that I'll be using probably shared hosting environment.
Wonder if anyone tried to implement similar functionality without using those technologies and have some ideas about db structure and code samples...
Also should I have to use Lucene and Solr does anyone know some cheap VPS hosting which allow installation and usage of Solr, and also might throw some tutorial how to create such faceted search as I couldn't found any.
Thanks