I'm building a huge database of IP addresses with their geographic location attached (country, city, ect).
Right now, I'm using this simple database structure:
id || ip_addr || country || city ||
I've already starting building it, and I've got almost 1 million records, already. The thing is, lots of addresses have the same country attached and fetching from the database is becoming really slow.
I was thinking, if I do this:
countryTable:
countryID || countryName ||
cityTable:
cityID || cityName || countryID (for what country the city is in) ||
and then, ipTable:
id || ip_addr || countryID || cityID
Would it make fetching any faster?
Is this method more efficient (does it have any other benefits)? Or should I just stick to what I have already?