Redis persistence configuration, RDB and AOF configuration instructions

Article directory I. Overview 2. RDB persistence configuration 3. AOF persistence mode configuration If your understanding of Redis is not deep enough, please pay attention to this column. This column includes Redis installation, Redis configuration file description, Redis command and data type description. 1. Overview Redis persistence refers to the process of storing Redis data […]

Redis write failureMISCONFRedisisconfiguredtosaveRDBsnapshots, but is currently not able to persist on disk

The Java log error is as follows: redis hput exception org.springframework.dao.InvalidDataAccessApiUsageException: MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error. ; nested exception is redis.clients.jedis.exceptions.JedisDataException: MISCONF Redis is configured […]

Redis’s safety net: Master the persistence technology of RDB and AOF [redis Part 4]

Safety net of Redis: Master the persistence technology of RDB and AOF Preface First: What are RDB and AOF? RDB (Redis Database Backup): AOF (Append-Only File): Similarities and differences: Second: In-depth analysis of RDB mechanism working principle: Configuration and triggering: advantage: limitation: Third: In-depth analysis of the AOF mechanism working principle: Configuration and management: rewrite […]

Installation and use of HammerDB (super detailed)

Table of Contents ?edit 1. Introduction to HammerDB 2. Installation of HammerDB 1. Download hammerdb installation package 2. Permission configuration and installation 3. View the installation directory 3. Configuration before installation 1. Start monitoring 2. Start the database 3. Create table space 1. Modify the temporary table space 2. Modify the undo table space 3. […]

Memory-based distributed NoSQL database Redis (5) Data storage and RDB design

Article directory Knowledge point 18: Data storage design Knowledge point 19: Redis persistence: RDB design Knowledge point 20: Redis persistence: RDB testing postscript Knowledge point 18: Data storage design Goal: Master the design of common data stores Implementation Question How does data storage ensure data security? How to ensure the security of HDFS data? How […]

Redis RDB persistence

Foreword We know that the reason why Redis is fast is largely because its data is placed directly in the memory, and the memory is a volatile memory. Data is stored only when the power is turned on, and the data will be lost when the power is turned off. At this time, it depends […]

Redis persistent AOF and RDB

Why does Redis need persistence? When thinking about this problem, I think we can think about it in reverse, assuming that Redis does not support persistence, what will be the consequences. First of all, Redis is a memory-based database. Once the Redis service goes down or is restarted, the data in Redis will be lost […]