A summary of some uses of Redis

Source: Internet
Author: User

After 1.redis of cached data fills up with physical memory, Redis can persist some long unused (hit) data to the hard disk. While Redis periodically persists data to the hard disk, the cache data is still desirable after the server restarts. The persistence mechanism is divided into two kinds of snapshot and AOF.
Snapshot Working principle: is to store the data in memory first, and then when the data accumulated to achieve certain set of cutting value, it will trigger a dump operation, the change of data to write to the data file (RDB file) once.
AOF will be able to achieve full-length persistence, only need to open in the configuration file (default is no), appendonly Yes on aof, Redis every time you execute a modified data command, will add it to the AoF file, when the Redis restart, will read the aof file to "replay "To revert to the last moment before Redis was closed.

The 2.redis supports data storage in k/v format and also supports data storage in formats such as List,set,hash .

3.redis supports a master multiple from, or a master-one from the cluster. Support Master-slave data backup.

A summary of some uses of Redis

Related Article

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.