参数项

<p>本文主要介绍可以通过弹性缓存Redis管理控制台修改的主要参数。</p> <p><span style="font-size:18px"><strong>背景信息</strong></span></p> <p>弹性缓存Redis服务提供了参数管理功能,您可以根据业务需求,设置Redis引擎相关的高级参数,进行性能调优。</p> <p><span style="font-size:18px"><strong>参数说明</strong></span></p> <table border="1" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="background-color:#ededed; vertical-align:top"> <p><strong>参数</strong></p> </td> <td style="background-color:#ededed; vertical-align:top; width:441px"> <p><strong>说明</strong></p> </td> <td style="background-color:#ededed; vertical-align:top; width:52px"> <p><strong>默认值</strong></p> </td> <td style="background-color:#ededed; vertical-align:top; width:67px"> <p><strong>取值范围</strong></p> </td> <td style="background-color:#ededed; vertical-align:top; width:53px"> <p><strong>主从实例</strong></p> </td> <td style="background-color:#ededed; vertical-align:top; width:54px"> <p><strong>集群实例</strong></p> </td> </tr> <tr> <td style="vertical-align:top"> <p>hash-max-ziplist-entries</p> </td> <td style="vertical-align:top; width:441px"> <p>当Hash对象所对应的Hash表中所有键值对数量小于等于指定数值时,使用ziplist编码格式。</p> </td> <td style="vertical-align:top; width:52px"> <p>512</p> </td> <td style="vertical-align:top; width:67px"> <p>0-1024</p> </td> <td style="vertical-align:top; width:53px"> <p>支持</p> </td> <td style="vertical-align:top; width:54px"> <p>支持</p> </td> </tr> <tr> <td style="vertical-align:top"> <p>hash-max-ziplist-value</p> </td> <td style="vertical-align:top; width:441px"> <p>当Hash对象所对应的Hash表中每个键或值的最大长度都小于等于指定字节时,使用ziplist编码格式。</p> </td> <td style="vertical-align:top; width:52px"> <p>64</p> </td> <td style="vertical-align:top; width:67px"> <p>0-1024</p> </td> <td style="vertical-align:top; width:53px"> <p>支持</p> </td> <td style="vertical-align:top; width:54px"> <p>支持</p> </td> </tr> <tr> <td style="vertical-align:top"> <p>list-compress-depth</p> </td> <td style="vertical-align:top; width:441px"> <p>列表压缩深度,即列表两端不被压缩的节点个数:</p> <p>&bull;&nbsp; 0:表示不压缩。</p> <p>&bull;&nbsp; 1:表示首尾两端各有1个节点不被压缩,中间节点被压缩。</p> <p>&hellip;</p> <p>&bull;&nbsp; n: 表示首尾两端各有n个节点不被压缩,中间节点被压缩。</p> </td> <td style="vertical-align:top; width:52px"> <p>0</p> </td> <td style="vertical-align:top; width:67px"> <p>0-512</p> </td> <td style="vertical-align:top; width:53px"> <p>支持</p> </td> <td style="vertical-align:top; width:54px"> <p>支持</p> </td> </tr> <tr> <td style="vertical-align:top"> <p>set-max-intset-entries</p> </td> <td style="vertical-align:top; width:441px"> <p>当Set集合内的数据同时满足以下条件时,使用intset编码:</p> <p>&bull;&nbsp; 都是字符串型类型;</p> <p>&bull;&nbsp; 基数为10的整数,范围为64位有符号整数。</p> </td> <td style="vertical-align:top; width:52px"> <p>512</p> </td> <td style="vertical-align:top; width:67px"> <p>0-1024</p> </td> <td style="vertical-align:top; width:53px"> <p>支持</p> </td> <td style="vertical-align:top; width:54px"> <p>支持</p> </td> </tr> <tr> <td style="vertical-align:top"> <p>zset-max-ziplist-value</p> </td> <td style="vertical-align:top; width:441px"> <p>当Sorted set集合内每个键或值的最大长度小于指定数值时,使用ziplist编码格式。</p> </td> <td style="vertical-align:top; width:52px"> <p>64</p> </td> <td style="vertical-align:top; width:67px"> <p>0-1024</p> </td> <td style="vertical-align:top; width:53px"> <p>支持</p> </td> <td style="vertical-align:top; width:54px"> <p>支持</p> </td> </tr> <tr> <td style="vertical-align:top"> <p>zset-max-ziplist-entries</p> </td> <td style="vertical-align:top; width:441px"> <p>当Sorted set集合记录的所有键值对数量小于指定数值时,使用ziplist编码格式。</p> </td> <td style="vertical-align:top; width:52px"> <p>128</p> </td> <td style="vertical-align:top; width:67px"> <p>0-1024</p> </td> <td style="vertical-align:top; width:53px"> <p>支持</p> </td> <td style="vertical-align:top; width:54px"> <p>支持</p> </td> </tr> <tr> <td style="vertical-align:top"> <p>notify-keyspace-events</p> </td> <td style="vertical-align:top; width:441px"> <p>键空间通知,配置该参数后,客户端可以通过Redis的订阅与发布功能,来接收那些以某种方式改动了Redis数据集的事件。</p> <p>&bull;&nbsp; K:键空间通知,所有通知以__keyspace@&lt;db&gt;__为前缀。</p> <p>&bull;&nbsp; E:键事件通知,所有通知以__keyevent@&lt;db&gt;__为前缀。</p> <p>&bull;&nbsp; g:DEL、EXPIRE、RENAME等类型无关的通用命令的通知。</p> <p>&bull;&nbsp; $:字符串命令的通知。</p> <p>&bull;&nbsp; l:列表命令的通知。</p> <p>&bull;&nbsp; s:集合命令的通知。</p> <p>&bull;&nbsp; h:哈希命令的通知。</p> <p>&bull;&nbsp; z:有序集合命令的通知。</p> <p>&bull;&nbsp; x:过期事件。每当有过期键被删除时发送。</p> <p>&bull;&nbsp; e:驱逐(evict)事件。每当有键因为maxmemory策略而被删除时发送。</p> <p>&bull;&nbsp; A:所有参数g$lshzxe的别名。</p> </td> <td style="vertical-align:top; width:52px"> <p>N/A</p> </td> <td style="vertical-align:top; width:67px"> <p>N/A</p> </td> <td style="vertical-align:top; width:53px"> <p>支持</p> </td> <td style="vertical-align:top; width:54px"> <p>支持</p> </td> </tr> </tbody> </table>
以上内容是否解决了您的问题?
请补全提交信息!
联系我们

电话咨询

400-151-8800

邮件咨询

fincloud@ocft.com

在线客服

工单支持

解决云产品相关技术问题