I'm developing software using a MySql database and Hibernate to access it. The problem I am having is when I look for 1 keyword I am using 40 000 queries already and the application that I am developing should be able to process multiple keywords.
So basically we are dealing with a database filled with String values and a lot of comparing has to be done. For now, using a filter I'm loading all possible matches in memmory and I compare them in the java code. This is highly recursive and slow.
So obviously MySql and most of all Hibernate are not the way to go. Could anyone please provide some information on which database would provide better performance. I'm looking into Hypertable, MongoDb, Hbase, Graph Database, ... but I'm not sure which way to go.
Please help. Thanks