Say you set a search to have a limit 100, will the search stop executing and return the 100 first hits, or will it continue to run through all the possible hits.
If the first is the case... Why should it take longer time to search for example "SELECT something FROM table WHERE name like 'php*' limit 100", than if you use "name = 'phpbuilder'"?
Of course i can see why this should be different, but still I'm thinking that what I ask for in the first search is to list the first 100 hits that starts with "php"... Why does this hav to take longer time than the first 100 hits called "phpbuilder"...
Maybe this is a stupid question, but having the need of retrieving data fast... very fast... Is there something I can do to optimize my use of queries? Anybody?
Ok