zoukankan      html  css  js  c++  java
  • 环境安装备忘录 Redis redis-slave-端口号.conf

    #包含通用配置
    include /etc/redis/redis-common.conf
    #监听tcp端口
    port 16380
    #最大可用内存
    maxmemory 100m
    #内存耗尽时采用的淘汰策略:
    # volatile-lru -> remove the key with an expire set using an LRU algorithm
    # allkeys-lru -> remove any key accordingly to the LRU algorithm
    # volatile-random -> remove a random key with an expire set
    # allkeys-random -> remove a random key, any key
    # volatile-ttl -> remove the key with the nearest expire time (minor TTL)
    # noeviction -> don't expire at all, just return an error on write operations
    maxmemory-policy allkeys-lru
    #aof存储文件
    appendfilename "appendonly-16380.aof"
    #rdb文件,只用于动态添加slave过程
    dbfilename dump-16380.rdb
    #cluster配置文件(启动自动生成)
    cluster-config-file nodes-16380.conf
    #部署在同一机器的redis实例,把auto-aof-rewrite搓开,防止瞬间fork所有redis进程做rewrite,占用大量内存
    auto-aof-rewrite-percentage 80-100

    ==========================================================================

    #包含通用配置
    include /etc/redis/redis-common.conf
    #监听tcp端口
    port 16381
    #最大可用内存
    maxmemory 100m
    #内存耗尽时采用的淘汰策略:
    # volatile-lru -> remove the key with an expire set using an LRU algorithm
    # allkeys-lru -> remove any key accordingly to the LRU algorithm
    # volatile-random -> remove a random key with an expire set
    # allkeys-random -> remove a random key, any key
    # volatile-ttl -> remove the key with the nearest expire time (minor TTL)
    # noeviction -> don't expire at all, just return an error on write operations
    maxmemory-policy allkeys-lru
    #aof存储文件
    appendfilename "appendonly-16381.aof"
    #rdb文件,只用于动态添加slave过程
    dbfilename dump-16381.rdb
    #cluster配置文件(启动自动生成)
    cluster-config-file nodes-16381.conf
    #部署在同一机器的redis实例,把auto-aof-rewrite搓开,防止瞬间fork所有redis进程做rewrite,占用大量内存
    auto-aof-rewrite-percentage 60-80

  • 相关阅读:
    专业英语阅读(二)
    专业英语阅读(一)
    高精度运算
    高精度运算——加减乘除阶乘
    python常见编程面试题汇总
    python线程
    反射
    单例模式
    生成器、迭代器
    python装饰器
  • 原文地址:https://www.cnblogs.com/kaye0110/p/5069769.html
Copyright © 2011-2022 走看看