美文网首页
redis.conf详解之tls-session-cache-s

redis.conf详解之tls-session-cache-s

作者: 小易哥学呀学 | 来源:发表于2021-12-06 09:33 被阅读0次

用法

tls-session-caching yes
tls-session-cache-size 20480
tls-session-cache-timeout 300

 

用途

会话重用时,缩短建立连接时间。
概括来讲:服务端会在server hello返回session ID,客户端会话重用时需带上这个session ID,服务端会在缓存中查找,如果找到会省去一些其他步骤,加快连接建立时间。
tls-session-cachingyes开启会话缓存,no关闭会话缓存。
tls-session-cache-size: 设置缓存多少会话,0代表无限制。
tls-session-cache-timeout: 设置会话的缓存时间。
 

注意事项:

1.默认是开启会话缓存的。
2.缓存的会话个数,默认20480个。
3.缓存的超时时间,默认300秒。
 

redis源码

https://github.com/redis/redis/blob/6.2.6/src/tls.c

 310     if (ctx_config->session_caching) {
 311         SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER);
 312         SSL_CTX_sess_set_cache_size(ctx, ctx_config->session_cache_size);
 313         SSL_CTX_set_timeout(ctx, ctx_config->session_cache_timeout);
 314         SSL_CTX_set_session_id_context(ctx, (void *) "redis", 5);
 315     } else {
 316         SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
 317     }

 

openssl

SSL_CTX_set_session_cache_mode
SSL_CTX_sess_set_cache_size
SSL_CTX_set_timeout
 

原生注释

# By default, TLS session caching is enabled to allow faster and less expensive
# reconnections by clients that support it. Use the following directive to disable
# caching.
#
# tls-session-caching no

# Change the default number of TLS sessions cached. A zero value sets the cache
# to unlimited size. The default size is 20480.
#
# tls-session-cache-size 5000

# Change the default timeout of cached TLS sessions. The default timeout is 300
# seconds.
#
# tls-session-cache-timeout 60

 

redis.conf详解目录

redis.conf详解总纲
欢迎加v交流:maxwangnan005

相关文章

  • redis.conf详解之tls-session-cache-s

    用法 用途 会话重用时,缩短建立连接时间。概括来讲:服务端会在server hello返回session ID,客...

  • redis.conf详解之include

    1、用法: 在 $yourPath/redis.conf 文件中添加以下配置 2、用途: 模块化配置,比如所有服务...

  • redis.conf详解之module

    1、用法: 在 $yourPath/redis.conf 文件中添加以下配置 2、module制作: 准备工作 1...

  • redis.conf详解之timeout

    用法 单位是秒 用途 在timeout时间内如果没有数据交互,redis侧将关闭连接。没有数据交互:redis客户...

  • redis.conf详解之port

    用法 用途 指定redis监听的端口。 注意事项: 1.默认是63792.配置为0时将不监听任何端口(也就是服务没...

  • redis.conf详解之bind

    用法 绑定到本机的其中一个ip 绑定到本机的两个ip,如果10.0.0.1无效redis依旧可以启动。 绑定到本机...

  • redis.conf详解之daemonize

    用法 作为非守护进程运行 作为守护进程运行 注意事项: 默认情况下,Redis不作为守护进程运行。如果以守护进程运...

  • redis.conf详解之pidfile

    用法 注意事项: 如果pidfile文件创建失败,也不会影响redis启动。配置了daemonize或pidfil...

  • redis.conf详解之maxclients

    本文基于 redis_version:6.2.5 用法 设置一个redis实例支持的最大连接数。 注意事项: 默认...

  • Redis.conf 详解

    Redis.conf 详解 参考地址:https://www.cnblogs.com/zhang-ke/p/598...

网友评论

      本文标题:redis.conf详解之tls-session-cache-s

      本文链接:https://www.haomeiwen.com/subject/uvywxrtx.html