准确率 99.9% 的离线IP地址定位库
Java仓库
共 1912字,需浏览 4分钟
·
2022-12-18 10:06
(最新全家桶激活码来了) ↓↓↓↓↓↓ (点击获取最新一年激活码) (点击获取最新一年激活码)
-
正文
1
>80% ,淘宝IP地址库:http://ip.taobao.com ≈10% ,GeoIP:https://geoip.com ≈2% ,纯真IP库:http://www.cz88.net
_城市Id|国家|区域|省份|城市|ISP_
memory算法:整个数据库全部载入内存,单次查询都在0.1x毫秒内,C语言的客户端单次查询在0.00x毫秒级别。 binary算法:基于二分查找,基于 ip2region.db文件,不需要载入内存,单次查询在0.x毫秒级别。 b-tree算法:基于btree算法,基于 ip2region.db文件,不需要载入内存,单词查询在0.x毫秒级别,比 binary 算法更快。
2
<dependency>
<groupId>org.lionsoul</groupId>
<artifactId>ip2region</artifactId>
<version>1.7.2</version>
</dependency>
npm install node-ip2region --save
Install-Package IP2Region
composer require zoujingli/ip2region
3
cd binding/c/
gcc -g -O2 testSearcher.c ip2region.c
./a.out ../../data/ip2region.db
initializing B-tree ...
+----------------------------------+
| ip2region test script |
| Author: chenxin619315@gmail.com |
| Type 'quit' to exit program |
+----------------------------------+
p2region>> 101.105.35.57
2163|中国|华南|广东省|深圳市|鹏博士 in 0.02295 millseconds
评论