search
HomeDatabaseRedisredis key expiration settings

redis key expiration settings

May 21, 2020 am 09:10 AM
redis

redis key expiration settings

EXPIRE key seconds

is used to set an expiration time for a key. The second parameter indicates how many seconds will pass before the key expires. After a key expires, the key will be automatically deleted. In Redis terminology, keys with expiration times are often called volatile.

When using delete or overwrite operations on this key, the expiration time will be cleared. These operations include DEL, SET, GETSET and all *STORE commands. Those commands that modify the key value will not modify the expiration time, such as IINCR to modify the value, LPUSH to add a new value to the queue, and HSET to modify the members in the hash table.

If you just want to clear the expiration time, you can call the PERSIST command so that the key will not expire. The expiration time is an attribute of the key and will not change due to the key name modification (RENAME). When RENAME is used to overwrite other keys, only an overwriting effect has passed, and the renamed key will still retain its expiration time.

Note: calling the EXPIRE/PEXPIRE command with a non-positive number on a key, or calling EXPIREAT/PEXPIREAT with a past time will directly remove the key.

Update expiration time

Calling EXPIRE on a key with an expiration time can update the expiration time of the key.

Return value

Calling EXPIRE key seconds will return 0 or 1. 0 means that the key does not exist, and 1 means that the key has been set to timeout.

How Redis handles keys with expiration time

Keys with expiration time

Under normal circumstances, redis The key exists until the key is explicitly deleted (via the DEL command) or cleared due to memory constraints. Setting a timeout for a key requires additional memory to record relevant information. Redis will ensure that the key will be removed when it expires.

Expiration time precision

Starting from redis2.6, the deviation of expiration time is between 0 and 1 millisecond.

Expiration time logic

The expiration time of the key uses the Unix absolute timestamp (with milliseconds as the precision). Even if the redis instance is closed, by that Unix time If you poke it, the key will also expire (it just won't be cleared immediately).

If you want to move data in one redis to redis on another computer by moving RDB files, you need to ensure that the unix absolute timestamps of the two computers are consistent.

If you set an expiration time for a key, do not modify your computer time casually, because redis will often check the system time. If you adjust the time forward, the keys that should expire will not expire. If you adjust the time backward, keys will expire that shouldn't expire.

How redis cleans up expired keys:

Redis cleans up expired keys in two ways: passive cleaning and active cleaning.

(1) Passive cleaning: When accessing a key with an expiration time, if it is found that the key has expired, the key will be cleared.

(2) redis will perform 10 checks per second, each check includes:

  • Randomly select 20 keys with expiration time, and then delete them All expired keys.

  • If more than 25% of the keys among these 20 have expired, then perform step 1) again.

This is a simple probability algorithm, we assume that the selected key can be used as a sample of all keys with expiration time. Through the above operations, we can basically determine that the ratio of timed-out keys to keys with timeout periods is less than 25%. Then the excess memory occupied by expired keys that have not been cleaned up should be less than 25%.

How to handle expiration cleanup in replication and AOF files

In order not to destroy consistency, when a key expires and is cleaned up, the DEL operation will be synchronized with the AOF file and all replica nodes. In this way, the master node is responsible for the expiration cleanup operation. The slave node will not process the expiration cleanup of keys, but will only wait for the DEL command from the master node, so that the key spaces of the master node and the slave node will remain consistent.

For more redis knowledge, please pay attention to the redis introductory tutorial column.

The above is the detailed content of redis key expiration settings. 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
Redis: Understanding Its Architecture and PurposeRedis: Understanding Its Architecture and PurposeApr 26, 2025 am 12:11 AM

Redis is a memory data structure storage system, mainly used as a database, cache and message broker. Its core features include single-threaded model, I/O multiplexing, persistence mechanism, replication and clustering functions. Redis is commonly used in practical applications for caching, session storage, and message queues. It can significantly improve its performance by selecting the right data structure, using pipelines and transactions, and monitoring and tuning.

Redis vs. SQL Databases: Key DifferencesRedis vs. SQL Databases: Key DifferencesApr 25, 2025 am 12:02 AM

The main difference between Redis and SQL databases is that Redis is an in-memory database, suitable for high performance and flexibility requirements; SQL database is a relational database, suitable for complex queries and data consistency requirements. Specifically, 1) Redis provides high-speed data access and caching services, supports multiple data types, suitable for caching and real-time data processing; 2) SQL database manages data through a table structure, supports complex queries and transaction processing, and is suitable for scenarios such as e-commerce and financial systems that require data consistency.

Redis: How It Acts as a Data Store and ServiceRedis: How It Acts as a Data Store and ServiceApr 24, 2025 am 12:08 AM

Redisactsasbothadatastoreandaservice.1)Asadatastore,itusesin-memorystorageforfastoperations,supportingvariousdatastructureslikekey-valuepairsandsortedsets.2)Asaservice,itprovidesfunctionalitieslikepub/submessagingandLuascriptingforcomplexoperationsan

Redis vs. Other Databases: A Comparative AnalysisRedis vs. Other Databases: A Comparative AnalysisApr 23, 2025 am 12:16 AM

Compared with other databases, Redis has the following unique advantages: 1) extremely fast speed, and read and write operations are usually at the microsecond level; 2) supports rich data structures and operations; 3) flexible usage scenarios such as caches, counters and publish subscriptions. When choosing Redis or other databases, it depends on the specific needs and scenarios. Redis performs well in high-performance and low-latency applications.

Redis's Role: Exploring the Data Storage and Management CapabilitiesRedis's Role: Exploring the Data Storage and Management CapabilitiesApr 22, 2025 am 12:10 AM

Redis plays a key role in data storage and management, and has become the core of modern applications through its multiple data structures and persistence mechanisms. 1) Redis supports data structures such as strings, lists, collections, ordered collections and hash tables, and is suitable for cache and complex business logic. 2) Through two persistence methods, RDB and AOF, Redis ensures reliable storage and rapid recovery of data.

Redis: Understanding NoSQL ConceptsRedis: Understanding NoSQL ConceptsApr 21, 2025 am 12:04 AM

Redis is a NoSQL database suitable for efficient storage and access of large-scale data. 1.Redis is an open source memory data structure storage system that supports multiple data structures. 2. It provides extremely fast read and write speeds, suitable for caching, session management, etc. 3.Redis supports persistence and ensures data security through RDB and AOF. 4. Usage examples include basic key-value pair operations and advanced collection deduplication functions. 5. Common errors include connection problems, data type mismatch and memory overflow, so you need to pay attention to debugging. 6. Performance optimization suggestions include selecting the appropriate data structure and setting up memory elimination strategies.

Redis: Real-World Use Cases and ExamplesRedis: Real-World Use Cases and ExamplesApr 20, 2025 am 12:06 AM

The applications of Redis in the real world include: 1. As a cache system, accelerate database query, 2. To store the session data of web applications, 3. To implement real-time rankings, 4. To simplify message delivery as a message queue. Redis's versatility and high performance make it shine in these scenarios.

Redis: Exploring Its Features and FunctionalityRedis: Exploring Its Features and FunctionalityApr 19, 2025 am 12:04 AM

Redis stands out because of its high speed, versatility and rich data structure. 1) Redis supports data structures such as strings, lists, collections, hashs and ordered collections. 2) It stores data through memory and supports RDB and AOF persistence. 3) Starting from Redis 6.0, multi-threaded I/O operations have been introduced, which has improved performance in high concurrency scenarios.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

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

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools