is there anyway to speed up mysql like operator performance if wild card is involved? eg. like '%test%'
|
MySQL can use an index if your query looks like More detail on indexes: http://dev.mysql.com/doc/refman/5.1/en/mysql-indexes.html Full text search: http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html |
|||
|
|
Well, the simplest optimization would be to have a constant prefix (e.g. Sometimes a preprocessing step can turn a wildcard search into an ordinary equality or a fulltext search. You'll gain more by finding a way to structure your data so that it does not require a wildcard search than trying to optimize the latter. |
|||
|
|