Redis source code parsing (5): redis persistence, redis source code parsing

Source: Internet
Author: User

Redis source code parsing (5): redis persistence, redis source code parsing

Redis is often called a memory database because it stores all data in the memory. To enable the data to continue to be used after the server restarts, Redis provides two persistence modes: RDB and AOF.

When Redis is running, the RDB program saves the database snapshots in the current memory to the disk file. When Redis is restarted, the RDB program can restore the database status by loading the RDB file.

The core functions of RDB are rdbSave and rdbLoad. The former is used to generate the RDB file to the disk, and the latter is used to reload the data in the RDB file into the memory:

AOF records all commands (and their parameters) written to the database in the form of protocol text to the AOF file, so as to record the database status.


Zookeeper

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.