I had a table with 3,000,000 rows which has IP ranges and their corresponding country, region(province) and city. The table was in MyISAM engine.
I wrote a script to fetch the geographic location for users by their IP and some of the queries took up to 17sec. I then converted the table to InnoDB and retried the querying process, some of the problematic queries known to be time consuming before has been improved in performance significantly, taking as short as 0.02 seconds. Although there still were queries took 2 or 3 seconds to complete, the over all time consumed by the look up on about 1000 IP address took around half the time as before when ran on MyISAM engine.
I did a search online comparing MyISAM and InnoDB, but all of the articles I read judged MyISAM being faster than InnoDB on SELECT queries. However, according to what I have seen this is not the case for my table. Does anyone has any theories why?
P.S, My table has no FK constraints, no PK, look up is done by comparing the IP with the 'ip_start' and 'ip_end' columns of each row. The row would match if the IP is within the range. Following is an example query that's in my script:
SELECT country, region, city FROM ip_location WHERE ip_start<=1177798832 AND ip_end>=1177798832 LIMIT 1;