search
HomeDatabaseRedisAnalysis of the principle of setting survival and expiration time in Redis

Recommended learning: Redis video tutorial

Let’s take a look at how to use it before understanding the principle

Through EXPIRE command or PEXPIRE command, the client can set the survival time for a certain key in the database with seconds or milliseconds precision. After the specified number of seconds or milliseconds, the server will automatically delete the key with a survival time of 0.

The SETEX command can set an expiration time for the key while setting a string key (can only be used for string keys)

With the EXPIRE command and The PEXPIRE command is similar. The client can use the EXPIREAT command or the PEXPIREAT command to set the expiration time for a key in the database with seconds or milliseconds precision.

The expiration time is a UNIX timestamp. When the expiration time of the key comes , the server will automatically delete the key from the database

The TTL command and the PTTL command accept a key with a survival time or expiration time, and return the remaining survival time of the key , that is, returns how long it will take before the key is automatically deleted by the server

Redis has four different commands that can be used to set the key’s survival time (How long the key can exist) or expiration time (when will the key be deleted):

  • EXPIRE<key><ttl> command is used to set the key’s survival time to ttl seconds .
  • PEXPIRE<key><ttl> command is used to set the key lifetime to ttl milliseconds.
  • EXPIREAT<key><timestamp> command is used to set the expiration time of the key to the timestamp in seconds specified by timestamp.
  • PEXPIREAT<key><timestamp> command is used to set the expiration time of the key to the timestamp in milliseconds specified by timestamp.

Principle

Although there are many different units and different forms of setting commands, in fact, the three commands EXPIRE, PEXPIRE, and EXPIREAT are all implemented using the PEXPIREAT command:

No matter which of the above four commands is executed by the client, after conversion, the final execution effect is the same as executing the PEXPIREAT command.

The expires dictionary of the redisDb structure saves the expiration time of all keys in the database. We call this dictionary the expires dictionary

The key of the expires dictionary is a pointer , this pointer points to a key object in the key space (that is, a database key).

The value of the expiration dictionary is an integer of long long type. This integer stores the expiration time of the database key pointed to by the key - a UNIX timestamp with millisecond precision.

The following figure shows an example of a database with an expired dictionary. In this example, the key space stores all key-value pairs in the database, while the expired dictionary stores The expiration time of the database key.

For the convenience of display, the alphabet key object and book key object are repeated twice in the key space and expiration dictionary in the figure. In practice, the keys of the key space and the keys of the expiration dictionary point to the same key object, so there will not be any duplicate objects and no space will be wasted.

The expired dictionary in the figure saves two key-value pairs:

The key of the first key-value pair is alphabet The key object has a value of 1385877600000, which means that the expiration time of the database key alphabet is 1385877600000 (0:00 on December 1, 2013).

The key of the second key-value pair is the book key object, and the value is 1388556000000, which means that the expiration time of the database key book is 1388556000000 (0:00 on January 1, 2014). When the client executes the PEXPIREAT command (or the other three commands that are converted into PEXPIREAT commands) to set an expiration time for a database key, the server associates the given database key and expiration time in the database's expiration dictionary.

After the server executes the following command

The expired dictionary will add a key-value pair, where the key is the message key object and the value is 1391234400000 (0:00 on February 1, 2014), as shown in the figure

The following is the pseudocode definition of the PEXPIREAT command

The PERSIST command can remove the expiration time of a key

The PERSIST command is the reverse operation of the PEXPIREAT command: the PERSIST command searches for a given key in the expiration dictionary and disassociates the key and value (expiration time) in the expiration dictionary.

Determination of expired keys

Through the expiration dictionary, the program can use the following steps to check whether a given key has expired:

1) Check whether the given key exists in the expiration dictionary : If it exists, get the expiration time of the key.

2) Check whether the current UNIX timestamp is greater than the expiration time of the key: if so, then the key has expired; otherwise, the key has not expired. This process can be described with pseudocode:

For a key alphabet with an expiration time of 1385877600000 (0:00 on December 1, 2013):

If the current time is 1383282000000 (0:00 on November 1, 2013), then calling is_expired(alphabet) will return False because the current time is less than the expiration time of the alphabet key.

On the other hand, if the current time is 1385964000000 (0:00 on December 2, 2013), then calling is_expired(alphabet) will return True because the current time is greater than the expiration time of the alphabet key.

Recommended learning: Redis video tutorial

The above is the detailed content of Analysis of the principle of setting survival and expiration time in Redis. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:脚本之家. If there is any infringement, please contact admin@php.cn delete
es和redis区别es和redis区别Jul 06, 2019 pm 01:45 PM

Redis是现在最热门的key-value数据库,Redis的最大特点是key-value存储所带来的简单和高性能;相较于MongoDB和Redis,晚一年发布的ES可能知名度要低一些,ES的特点是搜索,ES是围绕搜索设计的。

一起来聊聊Redis有什么优势和特点一起来聊聊Redis有什么优势和特点May 16, 2022 pm 06:04 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于redis的一些优势和特点,Redis 是一个开源的使用ANSI C语言编写、遵守 BSD 协议、支持网络、可基于内存、分布式存储数据库,下面一起来看一下,希望对大家有帮助。

实例详解Redis Cluster集群收缩主从节点实例详解Redis Cluster集群收缩主从节点Apr 21, 2022 pm 06:23 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis Cluster集群收缩主从节点的相关问题,包括了Cluster集群收缩概念、将6390主节点从集群中收缩、验证数据迁移过程是否导致数据异常等,希望对大家有帮助。

详细解析Redis中命令的原子性详细解析Redis中命令的原子性Jun 01, 2022 am 11:58 AM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于原子操作中命令原子性的相关问题,包括了处理并发的方案、编程模型、多IO线程以及单命令的相关内容,下面一起看一下,希望对大家有帮助。

Redis实现排行榜及相同积分按时间排序功能的实现Redis实现排行榜及相同积分按时间排序功能的实现Aug 22, 2022 pm 05:51 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,希望对大家有帮助。

实例详解Redis实现排行榜及相同积分按时间排序功能的实现实例详解Redis实现排行榜及相同积分按时间排序功能的实现Aug 26, 2022 pm 02:09 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,下面一起来看一下,希望对大家有帮助。

一文搞懂redis的bitmap一文搞懂redis的bitmapApr 27, 2022 pm 07:48 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了bitmap问题,Redis 为我们提供了位图这一数据结构,位图数据结构其实并不是一个全新的玩意,我们可以简单的认为就是个数组,只是里面的内容只能为0或1而已,希望对大家有帮助。

一起聊聊Redis实现秒杀的问题一起聊聊Redis实现秒杀的问题May 27, 2022 am 11:40 AM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于实现秒杀的相关内容,包括了秒杀逻辑、存在的链接超时、超卖和库存遗留的问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)