StackExchange.Redis 配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了StackExchange.Redis 配置相关的知识,希望对你有一定的参考价值。

配置选项(各配置项用逗号分割)
ConfigurationOptions 包含大量的配置选项,一些常用的配置如下:

abortConnect : 当为true时,当没有可用的服务器时则不会创建一个连接
allowAdmin : 当为true时 ,可以使用一些被认为危险的命令
channelPrefix:所有pub/sub渠道的前缀
connectRetry :重试连接的次数
connectTimeout:超时时间
configChannel: Broadcast channel name for communicating configuration changes
defaultDatabase : 默认0到-1
keepAlive : 保存x秒的活动连接
name:ClientName
password:password
proxy:代理 比如 twemproxy
resolveDns : 指定dns解析
serviceName : Not currently implemented (intended for use with sentinel)
ssl={bool} : 使用sll加密
sslHost={string} : 强制服务器使用特定的ssl标识
syncTimeout={int} : 异步超时时间
tiebreaker={string}:Key to use for selecting a server in an ambiguous master scenario
version={string} : Redis version level (useful when the server does not make this available)
writeBuffer={int} : 输出缓存区的大小

如:

127.0.0.1:40000,127.0.0.1:40001,keepAlive=180

 

以上是关于StackExchange.Redis 配置的主要内容,如果未能解决你的问题,请参考以下文章

使用 StackExchange.Redis 的 Redis 密码

StackExchange.Redis 配置

StackExchange.Redis客户端读写主从配置,以及哨兵配置。

StackExchange.Redis学习笔记 数据库及密码配置 GetServer函数

Redis和StackExchange.Redis

StackExchange.Redis.Extensions.Core 源码解读之 Configuration用法