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

  • 相关阅读:
    idea actiBPM插件之中文乱码
    quartz 集成到Spring中
    Spring 中将service 注入到普通的工具类中
    idea 将java 项目 打包成jar包
    异常来自 HRESULT:0x80070057 (E_INVALIDARG))
    Entity Framework小知识
    C# Unix时间戳转换
    Asp.NET MVC+WebAPI跨域调用
    位运算逻辑与逻辑或逻辑非运算 c# 中如何使用
    c# 学习笔记 重载、重写、重构、构造函数、new、Class
  • 原文地址:https://www.cnblogs.com/kaye0110/p/5069769.html
Copyright © 2011-2022 走看看