README.md
:globe_with_meridians: 中文简体 | English
ip2region - is an offline IP address localization library and IP localization data management framework. It supports both IPv4 and IPv6 with query efficiency at the 10-microsecond level. It provides xdb data generation and query client implementations for many mainstream programming languages.
The project itself provides raw data for both IPv4 (data/ipv4_source.txt) and IPv6 (data/ipv6_source.txt), along with corresponding xdb files (data/ip2region_v4.xdb and data/ip2region_v6.xdb) to achieve city-level query localization. The field format is: Country|Province|City|ISP|iso-alpha2-code. Localization information for China is entirely in Chinese, while regional information for non-China areas is entirely in English.
xdb supports hundreds of millions of IP data segment rows. Region information supports full customization. The region information of the built-in data is fixed in the format: Country|Province|City|ISP|iso-alpha2-Code. You can append data for specific business needs to the region, such as: GPS information/International Standard Regional Codes/Zip codes, etc. In other words, you can fully use ip2region to manage your own IP localization data.
The xdb format generation program automatically processes the input raw data, checks and completes the merging of adjacent IP segments, and performs deduplication and compression of identical regional information.
Even for queries based entirely on the xdb file, the single query response time is at the 10-microsecond level. Memory-accelerated queries can be enabled through the following two methods:
vIndex Index Caching: Uses a fixed 512KiB of memory to cache vector index data, reducing one disk IO operation and maintaining average query efficiency within 100 microseconds.xdb File Caching: Loads the entire xdb file into memory. Memory usage is equal to the xdb file size. There is no disk IO operation, maintaining 10-microsecond level query efficiency.xdb provides version-compatible query implementations. A unified API can simultaneously provide queries for both IPv4 and IPv6 data and return unified data.
xdb QueryFor API introductions, usage documentation, and test programs, please refer to the README introduction under the corresponding searcher query client. All query binding implementations are as follows:
| Language | Description | IPv4 Support | IPv6 Support |
|---|---|---|---|
| Golang | golang query client | :white_check_mark: | :white_check_mark: |
| PHP | php query client | :white_check_mark: | :white_check_mark: |
| Java | java query client | :white_check_mark: | :white_check_mark: |
| C | C[std=c99] query client | :white_check_mark: | :white_check_mark: |
| Lua_c | lua c extension query client | :white_check_mark: | :white_check_mark: |
| Lua | lua query client | :white_check_mark: | :white_check_mark: |
| Rust | rust query client | :white_check_mark: | :white_check_mark: |
| Python | python query client | :white_check_mark: | :white_check_mark: |
| Javascript | javascript query client | :white_check_mark: | :white_check_mark: |
| Csharp | csharp query client | :white_check_mark: | :white_check_mark: |
| Erlang | erlang query client | :white_check_mark: | :x: |
| Nginx | nginx extension query client | :white_check_mark: | :white_check_mark: |
| C++ | C++ query client | :white_check_mark: | :white_check_mark: |
The following toolchain implementations are contributed by community developers via third-party repositories:
| Language | Description |
|---|---|
| ip2region-composer | php composer management client |
| ip2region-ts | node.js addon management client |
| ruby-ip2region | ruby xdb query client implementation |
| Ip2regionTool | ip2region data conversion tool |
xdb GenerationFor API introductions, usage documentation, and test programs, please refer to the README documents under the following maker generation programs:
| Language | Description | IPv4 Support | IPv6 Support |
|---|---|---|---|
| Golang | golang xdb generation program | :white_check_mark: | :white_check_mark: |
| Java | java xdb generation program | :white_check_mark: | :white_check_mark: |
| Python | python xdb generation program | :white_check_mark: | :x: |
| Csharp | csharp xdb generation program | :white_check_mark: | :x: |
| Rust | rust xdb generation program | :white_check_mark: | :white_check_mark: |
| C++ | C++ xdb generation program | :white_check_mark: | :white_check_mark: |
xdb UpdateThe core of the ip2region project lies in researching the design and implementation of IP data storage and fast querying. The raw data ./data/ipv4_source.txt and ./data/ipv6_source.txt included in the project are updated irregularly. For scenarios with high requirements for data accuracy and update frequency, it is recommended to purchase commercial offline data from the Ip2Region Community or third-party vendors. You can try to update the data yourself using the following methods:
You can modify the data yourself based on the raw IP data provided by ip2region in ./data/ipv4_source.txt and ./data/ipv6_source.txt using the editing tools provided by ip2region. Currently, the data sources include:
[Data_Updates]For instructions on using the raw IP data editing tools, please refer to the README documents under the following maker generation programs:
| Language | Description | IPv4 Support | IPv6 Support |
|---|---|---|---|
| Golang | golang IP raw data editor | :white_check_mark: | :white_check_mark: |
| C++ | C++ IP raw data editor | :white_check_mark: | :white_check_mark: |
If you want to update data via your own API or data source, you can refer to the update algorithm based on the "Detection Algorithm" shared in the following videos to write your own update program:
The Ip2Region official community was officially launched on 2025/06/12. On one hand, it provides stable commercial offline data services. On the other hand, it facilitates the strengthening of the IP toolchain and data services outside the core code, such as usage documentation, query testing, and data correction. For more information and services regarding the community, please visit the Ip2Region Official Community.