zoukankan      html  css  js  c++  java
  • redis Database Eviction Policies Redis on Flash

    Database Eviction Policies - Redis Enterprise Software | Redis Labs https://redislabs.com/redis-enterprise-documentation/administering/database-operations/eviction-policy/

    Eviction policies

    The eviction policy designates a data eviction method for Redis Enterprise Software (RS) to use when the database size reaches its limit. You can select any of the following:

    Policy Description
     noeviction Returns an error if the memory limit has been reached when trying to insert more data
     allkeys-lru Evicts the least recently used keys out of all keys
     allkeys-random Randomly evicts keys out of all keys
     volatile-lru Evicts the least recently used keys out of all keys with an “expire” field set
     volatile-ttl Evicts the shortest time-to-live and least recently used keys out of all keys with an “expire” field set.
     volatile-random Randomly evicts keys with an “expire” field set

    One mechanism to avoid this, but still keep performance is to use Redis on Flash. It can span your database across RAM + Flash Memory and intelligently manage what data is hot and should be in RAM and what data is not and can be on Flash memory (SSD).

    热点数据

    冷数据

    逐出策略

  • 相关阅读:
    HDFS工作流程
    HADOOP 安全模式
    Hadoop环境的搭建
    面向对象-绑定与非绑定方法
    面向对象-封装
    面向对象-继承与派生
    面向对象-多态与多态性
    面向对象-绑定方法
    LOL游戏基本代码
    1 面向对象的程序设计
  • 原文地址:https://www.cnblogs.com/rsapaper/p/9052123.html
Copyright © 2011-2022 走看看