Rails中如何将MaxMind本地数据、CSV文件导入redis?
Posted
技术标签:
【中文标题】Rails中如何将MaxMind本地数据、CSV文件导入redis?【英文标题】:How to import MaxMind local data, CSV files into redis in Rails? 【发布时间】:2017-12-25 09:01:26 【问题描述】:我需要将 Maxmind 提供的 CSV 文件导入到 Ruby on Rails 应用程序中的 Redis。
在这个link 中,他们为 SQL 数据库提供了方法,但没有为 NoSQL 数据库提供方法。
【问题讨论】:
也有ruby c绑定github.com/mtodd/geoip。也许现在已经过时了,但早期它非常快。 【参考方案1】:我找不到将 Maxmind 导入 Redis 的现成教程。但是,我看过一个将 IP2Location 导入 Redis 并进行查询的教程。您可以参考这篇文章,然后根据 Maxmind 更新 CSV 参数。
https://www.ip2location.com/tutorials/importing-ip2location-data-into-redis-and-querying-with-php
我希望我能更有用,但这是我能找到的最佳参考。
【讨论】:
【参考方案2】:我用过这个宝石:
https://github.com/zabolotnov87/geoip_redis
实现起来很容易。
我找到的其他解决方案是:
https://redislabs.com/ebook/part-2-core-concepts/chapter-5-using-redis-for-application-support/5-3-ip-to-city-and-country-lookup/5-3-1-loading-the-location-tables/
https://redislabs.com/ebook/part-2-core-concepts/chapter-5-using-redis-for-application-support/5-3-ip-to-city-and-country-lookup/5-3-2-looking-up-cities/
他们已经正确地描述了它用于加载 csv 文件和查找城市,但代码是在 python 中。
【讨论】:
以上是关于Rails中如何将MaxMind本地数据、CSV文件导入redis?的主要内容,如果未能解决你的问题,请参考以下文章
Rails 3.2.3 GeoLocation 使用 MaxMind
Rails GeoLiteCity GeoIP 在本地开发环境中不起作用