redis-geo
v0.1.1
Published
redis geo-ip lokup
Downloads
17
Readme
redis-geo
GeoIp backed by redis. Port of examples provided by Redis in Action. Buy the book!
Module Usage
var redis = require('redis').createClient();
var geoip = require('redis-geo')(redis);
geoip('71.75.248.222', function (err, info) {
if (err) throw err;
console.log(info);
});
Example output:
{
country: 'US',
state: 'NC',
city: 'Waxhaw',
zip: '28173',
lat: '34.9273',
lng: '-80.7278',
metro: '517',
areacode: '704'
}
Importing Data
First import the block via the csv dump.
$ redis-geo import-blocks /to/to/blocks.csv
Next, import the locations.
$ redis-geo import-locations path/to/locations.csv
License
MIT