Hi,
I want to develop a website with its own search engine. I would like to use some sort of web framework for all this development, like Django or Rails. The search would be based on vector space model (data is represented as term-by-document matrix). Everything would be running on one server, there would be no extra server for information indexing or search. I also would expect that system to run fast.
My question is, does anyone have any experience developing such system and could share some thoughts? Because the way I see it, every time loading term-by-document matrix into some array and performing search in it, plus performing such task very frequently, will be very slow.
Thanks!