Detailed explanation of how to effectively store IP addresses in MySQL and how to convert between string IP and numerical values

Detailed explanation of how to effectively store IP addresses in MySQL and how to convert between string IP and numerical values

When looking at High Performance MySQL Version 3 (Section 4.1.7), the author recommends that when storing IPv4 addresses, 32-bit unsigned integers (UNSIGNED INT) should be used to store IP addresses instead of strings. But no specific reason was given. In order to find out the reason, I checked some information and recorded it.

Compared with string storage, using unsigned integers for storage has the following advantages:

  • Save space, both data storage space and index storage space
  • It is convenient to use range query (BETWEEN...AND) and more efficient

Usually, when saving an IPv4 address, an IPv4 address requires at least 7 characters and at most 15 characters, so VARCHAR(15) can be used. When MySQL saves a variable-length string, it requires an extra byte to save the length of the string. If you use unsigned integers to store it, only 4 bytes are needed. In addition, you can use 4 fields to store each part of IPv4 separately, but usually this should not be very high in terms of storage space and query efficiency (there may be some scenarios where this storage method is suitable).

For detailed performance analysis and benchmarks of using strings and unsigned integers to store IP, see this article.

Using unsigned integers for storage also has disadvantages:

  • Not easy to read
  • Manual conversion required

For conversion, MySQL provides corresponding functions to convert IP in string format into integer INET_ATON, and to convert IP in integer format into string INET_NTOA. As shown below:

 mysql> select inet_aton('192.168.0.1');
+--------------------------+
| inet_aton('192.168.0.1') |
+--------------------------+
| 3232235521 |
+--------------------------+
1 row in set (0.00 sec)
 
mysql> select inet_ntoa(3232235521);
+-----------------------+
| inet_ntoa(3232235521) |
+-----------------------+
| 192.168.0.1 |
+-----------------------+
1 row in set (0.00 sec)

For IPv6, the same benefits can be obtained by using VARBINARY, and MySQL also provides corresponding conversion functions, namely INET6_ATON and INET6_NTOA.
For converting string IPv4 and numeric types, you can put it in the application layer. The following is the Java code to convert the two:

 package com.mikan;
 
/**
 * @author Mikan
 * @date 2015-09-22 10:59
 */
public class IpLongUtils {
    /**
     * Convert string IP to long
     *
     * @param ipStr string IP
     * @return the long value corresponding to IP*/
    public static long ip2Long(String ipStr) {
        String[] ip = ipStr.split("\\.");
        return (Long.valueOf(ip[0]) << 24) + (Long.valueOf(ip[1]) << 16)
                + (Long.valueOf(ip[2]) << 8) + Long.valueOf(ip[3]);
    }
 
    /**
     * Convert the IP long value into a string*
     * @param ipLong IP's long value* @return the string corresponding to the long value*/
    public static String long2Ip(long ipLong) {
        StringBuilder ip = new StringBuilder();
        ip.append(ipLong >>> 24).append(".");
        ip.append((ipLong >>> 16) & 0xFF).append(".");
        ip.append((ipLong >>> 8) & 0xFF).append(".");
        ip.append(ipLong & 0xFF);
        return ip.toString();
    }
 
    public static void main(String[] args) {
        System.out.println(ip2Long("192.168.0.1"));
        System.out.println(long2Ip(3232235521L));
        System.out.println(ip2Long("10.0.0.1"));
    }
    
}

The output is:
3232235521
192.168.0.1
167772161

This concludes this article on how to effectively store IP addresses in MySQL and how to convert between string IPs and numerical values. For more information on how to effectively store IP addresses in MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. We hope that everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to store IP addresses in MySQL
  • How to use MySQL's inet_aton() and inet_ntoa() functions to store IP addresses

<<:  Share the 15 best HTML/CSS design and development frameworks

>>:  Detailed explanation of gcc command usage under Linux system

Recommend

Using puppeteer to implement webpage screenshot function on linux (centos)

You may encounter the following problems when ins...

How to set background color and transparency in Vue

Background color and transparency settings As sho...

Implementation code for using mongodb database in Docker

Get the mongo image sudo docker pull mongo Run th...

Solution to Navicat Premier remote connection to MySQL error 10038

Remote connection to MySQL fails, there may be th...

Tomcat uses Log4j to output catalina.out log

Tomcat's default log uses java.util.logging, ...

Open the Windows server port (take port 8080 as an example)

What is a Port? The ports we usually refer to are...

js to achieve the effect of light switch

This article example shares the specific code of ...

Detailed explanation of basic interaction of javascript

Table of contents 1. How to obtain elements Get i...

Vue Beginner's Guide: Environment Building and Getting Started

Table of contents Initial Vue Building a Vue deve...

Detailed tutorial on installing MySQL offline on CentOS7

1. Delete the original mariadb, otherwise mysql c...

How to understand Vue's simple state management store mode

Table of contents Overview 1. Define store.js 2. ...

How to use Docker Compose to implement nginx load balancing

Implement Nginx load balancing based on Docker ne...

Teach you how to build a Hadoop 3.x pseudo cluster on Tencent Cloud

1. Environmental Preparation CentOS Linux release...