I am working on an application where we have different types of Searches.Some of them are full text searches over multiple columns in a MYSQL database and i am using Hibernate Search(which uses lucene internally ) for these.
Now my question is What to do in case of simple database searches which are not full text.A search of the form :
select * from table1,table2 where table1.col1='testval' and table1.col2=table2.col2;
Will such search be better if i use hibernate search or would there be no effect on performance,since this is not a full text search
join
, by the way. – chiastic-security