How to deal with queries like :
select ... from ... where match(field1) against('someA') and match(field2) against('someB') limit 50
If results returned by condition match(field1) against('someA') & match(field2) against('someB') are both huge,the entire query will be very,very slow.
A solution for this?