The Redis Kernel understands

Source: Internet
Author: User

First, Memory elimination

Second, object reference counter

1. Redis Key-"value" is stored in Redisobject, when the object is initialized, RefCount = 1; (Figure 1)

2, when the client uses get, RefCount +1, when released Refcount-1;

3. When using Del, refcount-1

4. If RefCount = 0, remove from memory

Figure 1

Third, the elimination of outdated data

Redis does not check whether data is out of date every moment because it is inefficient. The Redis cleanup expiration data is carried out in two phases, the first phase in the timer (Servercron, the action to clean up the expired data every 100ms), and the second stage when the user obtains the data.

The timer only randomly deletes some outdated data, it is impossible to completely delete all the outdated data.

The Redis Kernel understands

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.