├── .gitignore ├── .nojekyll ├── CNAME ├── _images ├── cover.png ├── guide-cover.png └── riacn-cover.png ├── _static ├── basic.css ├── css │ ├── badge_only.css │ └── theme.css ├── doctools.js ├── documentation_options.js ├── file.png ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── jquery-3.2.1.js ├── jquery.js ├── js │ ├── modernizr.min.js │ └── theme.js ├── language_data.js ├── minus.png ├── plus.png ├── pygments.css ├── searchtools.js ├── underscore-1.3.1.js └── underscore.js ├── bitmap ├── bitcount.html ├── bitfield.html ├── bitop.html ├── bitpos.html ├── getbit.html ├── index.html └── setbit.html ├── change_log.html ├── client_and_server ├── auth.html ├── client_getname.html ├── client_kill.html ├── client_list.html ├── client_setname.html ├── index.html ├── info.html ├── quit.html ├── shutdown.html └── time.html ├── cluster ├── cluster_addslots.html ├── cluster_count_failure_reports.html ├── cluster_countkeysinslot.html ├── cluster_delslots.html ├── cluster_failover.html ├── cluster_forget.html ├── cluster_getkeysinslot.html ├── cluster_info.html ├── cluster_keyslot.html ├── cluster_meet.html ├── cluster_nodes.html ├── cluster_replicate.html ├── cluster_reset.html ├── cluster_saveconfig.html ├── cluster_set_config_epoch.html ├── cluster_setslot.html ├── cluster_slaves.html ├── cluster_slots.html ├── index.html ├── readonly.html └── readwrite.html ├── configure ├── config_get.html ├── config_resetstat.html ├── config_rewrite.html ├── config_set.html └── index.html ├── database ├── dbsize.html ├── del.html ├── exists.html ├── flushall.html ├── flushdb.html ├── index.html ├── keys.html ├── move.html ├── randomkey.html ├── rename.html ├── renamenx.html ├── scan.html ├── select.html ├── sort.html ├── swapdb.html └── type.html ├── debug ├── debug_object.html ├── debug_segfault.html ├── echo.html ├── index.html ├── monitor.html ├── object.html ├── ping.html └── slowlog.html ├── expire ├── expire.html ├── expireat.html ├── index.html ├── persist.html ├── pexpire.html ├── pexpireat.html ├── pttl.html └── ttl.html ├── genindex.html ├── geo ├── geoadd.html ├── geodist.html ├── geohash.html ├── geopos.html ├── georadius.html ├── georadiusbymember.html └── index.html ├── hash ├── hdel.html ├── hexists.html ├── hget.html ├── hgetall.html ├── hincrby.html ├── hincrbyfloat.html ├── hkeys.html ├── hlen.html ├── hmget.html ├── hmset.html ├── hscan.html ├── hset.html ├── hsetnx.html ├── hstrlen.html ├── hvals.html └── index.html ├── hyperloglog ├── index.html ├── pfadd.html ├── pfcount.html └── pfmerge.html ├── index.html ├── internal ├── dump.html ├── index.html ├── migrate.html ├── psync.html ├── restore.html └── sync.html ├── list ├── blpop.html ├── brpop.html ├── brpoplpush.html ├── index.html ├── lindex.html ├── linsert.html ├── llen.html ├── lpop.html ├── lpush.html ├── lpushx.html ├── lrange.html ├── lrem.html ├── lset.html ├── ltrim.html ├── rpop.html ├── rpoplpush.html ├── rpush.html └── rpushx.html ├── objects.inv ├── persistence ├── bgrewriteaof.html ├── bgsave.html ├── index.html ├── lastsave.html └── save.html ├── pubsub ├── index.html ├── psubscribe.html ├── publish.html ├── pubsub.html ├── punsubscribe.html ├── subscribe.html └── unsubscribe.html ├── readme.html ├── replication ├── index.html ├── role.html └── slaveof.html ├── script ├── eval.html ├── evalsha.html ├── index.html ├── script_exists.html ├── script_flush.html ├── script_kill.html └── script_load.html ├── search.html ├── searchindex.js ├── sentinel ├── index.html ├── sentinel_ckquorum.html ├── sentinel_failover.html ├── sentinel_flushconfig.html ├── sentinel_get_master_addr_by_name.html ├── sentinel_master.html ├── sentinel_masters.html ├── sentinel_monitor.html ├── sentinel_remove.html ├── sentinel_reset.html ├── sentinel_sentinels.html ├── sentinel_set.html └── sentinel_slaves.html ├── set ├── index.html ├── sadd.html ├── scard.html ├── sdiff.html ├── sdiffstore.html ├── sinter.html ├── sinterstore.html ├── sismember.html ├── smembers.html ├── smove.html ├── spop.html ├── srandmember.html ├── srem.html ├── sscan.html ├── sunion.html └── sunionstore.html ├── sorted_set ├── index.html ├── zadd.html ├── zcard.html ├── zcount.html ├── zincrby.html ├── zinterstore.html ├── zlexcount.html ├── zrange.html ├── zrangebylex.html ├── zrangebyscore.html ├── zrank.html ├── zrem.html ├── zremrangebylex.html ├── zremrangebyrank.html ├── zremrangebyscore.html ├── zrevrange.html ├── zrevrangebyscore.html ├── zrevrank.html ├── zscan.html ├── zscore.html └── zunionstore.html ├── string ├── append.html ├── decr.html ├── decrby.html ├── get.html ├── getrange.html ├── getset.html ├── incr.html ├── incrby.html ├── incrbyfloat.html ├── index.html ├── mget.html ├── mset.html ├── msetnx.html ├── psetex.html ├── set.html ├── setex.html ├── setnx.html ├── setrange.html └── strlen.html ├── topic ├── cluster-spec.html ├── cluster-tutorial.html ├── index.html ├── notification.html ├── persistence.html ├── protocol.html ├── pubsub.html ├── replication.html ├── sentinel.html └── transaction.html └── transaction ├── discard.html ├── exec.html ├── index.html ├── multi.html ├── unwatch.html └── watch.html /.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | *.swp 3 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/.nojekyll -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | RedisDoc.com 2 | -------------------------------------------------------------------------------- /_images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/_images/cover.png -------------------------------------------------------------------------------- /_images/guide-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/_images/guide-cover.png -------------------------------------------------------------------------------- /_images/riacn-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/_images/riacn-cover.png -------------------------------------------------------------------------------- /_static/css/badge_only.css: -------------------------------------------------------------------------------- 1 | .fa:before{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-weight:normal;font-style:normal;src:url("../fonts/fontawesome-webfont.eot");src:url("../fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff") format("woff"),url("../fonts/fontawesome-webfont.ttf") format("truetype"),url("../fonts/fontawesome-webfont.svg#FontAwesome") format("svg")}.fa:before{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa{display:inline-block;text-decoration:inherit}li .fa{display:inline-block}li .fa-large:before,li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-0.8em}ul.fas li .fa{width:.8em}ul.fas li .fa-large:before,ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before{content:""}.icon-book:before{content:""}.fa-caret-down:before{content:""}.icon-caret-down:before{content:""}.fa-caret-up:before{content:""}.icon-caret-up:before{content:""}.fa-caret-left:before{content:""}.icon-caret-left:before{content:""}.fa-caret-right:before{content:""}.icon-caret-right:before{content:""}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up{height:auto;max-height:100%}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}} 2 | -------------------------------------------------------------------------------- /_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '2019', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | FILE_SUFFIX: '.html', 7 | HAS_SOURCE: true, 8 | SOURCELINK_SUFFIX: '.txt', 9 | NAVIGATION_WITH_KEYS: false 10 | }; -------------------------------------------------------------------------------- /_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/_static/file.png -------------------------------------------------------------------------------- /_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /_static/js/theme.js: -------------------------------------------------------------------------------- 1 | /* sphinx_rtd_theme version 0.4.2 | MIT license */ 2 | /* Built 20181005 13:10 */ 3 | require=function r(s,a,l){function c(e,n){if(!a[e]){if(!s[e]){var i="function"==typeof require&&require;if(!n&&i)return i(e,!0);if(u)return u(e,!0);var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}var o=a[e]={exports:{}};s[e][0].call(o.exports,function(n){return c(s[e][1][n]||n)},o,o.exports,r,s,a,l)}return a[e].exports}for(var u="function"==typeof require&&require,n=0;n"),i("table.docutils.footnote").wrap("
"),i("table.docutils.citation").wrap("
"),i(".wy-menu-vertical ul").not(".simple").siblings("a").each(function(){var e=i(this);expand=i(''),expand.on("click",function(n){return t.toggleCurrent(e),n.stopPropagation(),!1}),e.prepend(expand)})},reset:function(){var n=encodeURI(window.location.hash)||"#";try{var e=$(".wy-menu-vertical"),i=e.find('[href="'+n+'"]');if(0===i.length){var t=$('.document [id="'+n.substring(1)+'"]').closest("div.section");0===(i=e.find('[href="#'+t.attr("id")+'"]')).length&&(i=e.find('[href="#"]'))}0this.docHeight||(this.navBar.scrollTop(i),this.winPosition=n)},onResize:function(){this.winResize=!1,this.winHeight=this.win.height(),this.docHeight=$(document).height()},hashChange:function(){this.linkScroll=!0,this.win.one("hashchange",function(){this.linkScroll=!1})},toggleCurrent:function(n){var e=n.closest("li");e.siblings("li.current").removeClass("current"),e.siblings().find("li.current").removeClass("current"),e.find("> ul li.current").removeClass("current"),e.toggleClass("current")}},"undefined"!=typeof window&&(window.SphinxRtdTheme={Navigation:e.exports.ThemeNav,StickyNav:e.exports.ThemeNav}),function(){for(var r=0,n=["ms","moz","webkit","o"],e=0;e 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER ADDSLOTS — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER ADDSLOTS
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER ADDSLOTS

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_delslots.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER DELSLOTS — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER DELSLOTS
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER DELSLOTS

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_failover.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER FAILOVER — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER FAILOVER
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER FAILOVER

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_forget.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER FORGET — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER FORGET
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER FORGET

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER INFO — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER INFO
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER INFO

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_keyslot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER KEYSLOT — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER KEYSLOT
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER KEYSLOT

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_meet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER MEET — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER MEET
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER MEET

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_nodes.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER NODES — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER NODES
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER NODES

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_replicate.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER REPLICATE — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER REPLICATE
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER REPLICATE

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_reset.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER RESET — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER RESET
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER RESET

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_setslot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER SETSLOT — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER SETSLOT
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER SETSLOT

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_slaves.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER SLAVES — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER SLAVES
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER SLAVES

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/cluster_slots.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | CLUSTER SLOTS — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • CLUSTER SLOTS
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

CLUSTER SLOTS

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/readonly.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | READONLY — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • READONLY
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

READONLY

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /cluster/readwrite.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | READWRITE — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • READWRITE
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

READWRITE

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /genindex.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Index — Redis 命令参考 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
45 | 46 | 47 | 115 | 116 |
117 | 118 | 119 | 125 | 126 | 127 |
128 | 129 |
130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 |
148 | 149 |
    150 | 151 |
  • Docs »
  • 152 | 153 |
  • Index
  • 154 | 155 | 156 |
  • 157 | 158 | 159 | 160 |
  • 161 | 162 |
163 | 164 | 165 |
166 |
167 |
168 |
169 | 170 | 171 |

Index

172 | 173 |
174 | 175 |
176 | 177 | 178 |
179 | 180 |

181 | 讨论 182 | 183 |

184 | 185 |
186 | 197 | 198 | comments powered by Disqus 199 |
200 | 201 | 207 |
208 | 209 |
210 |
211 | 212 | 213 |
214 | 215 |
216 |

217 | © Copyright 2019, Redis 218 | 219 |

220 |
221 | Built with Sphinx using a theme provided by Read the Docs. 222 | 223 |
224 | 225 |
226 |
227 | 228 |
229 | 230 |
231 | 232 | 233 | 234 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 254 | 255 | -------------------------------------------------------------------------------- /objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangzworks/redis/2972b7be20a564c4123caa10035cecf85d5f8328/objects.inv -------------------------------------------------------------------------------- /sentinel/sentinel_ckquorum.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | SENTINEL ckquorum — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • SENTINEL ckquorum
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

SENTINEL ckquorum

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /sentinel/sentinel_master.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | SENTINEL master — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • SENTINEL master
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

SENTINEL master

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /sentinel/sentinel_masters.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | SENTINEL masters — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • SENTINEL masters
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

SENTINEL masters

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /sentinel/sentinel_monitor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | SENTINEL MONITOR — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • SENTINEL MONITOR
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

SENTINEL MONITOR

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /sentinel/sentinel_remove.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | SENTINEL REMOVE — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • SENTINEL REMOVE
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

SENTINEL REMOVE

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /sentinel/sentinel_reset.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | SENTINEL reset — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • SENTINEL reset
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

SENTINEL reset

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /sentinel/sentinel_set.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | SENTINEL SET — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • SENTINEL SET
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

SENTINEL SET

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | -------------------------------------------------------------------------------- /sentinel/sentinel_slaves.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | SENTINEL slaves — Redis 命令参考 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 | 46 | 114 | 115 |
116 | 117 | 118 | 124 | 125 | 126 |
127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 |
147 | 148 |
    149 | 150 |
  • Docs »
  • 151 | 152 |
  • SENTINEL slaves
  • 153 | 154 | 155 |
  • 156 | 157 | 158 | View page source 159 | 160 | 161 |
  • 162 | 163 |
164 | 165 | 166 |
167 |
168 |
169 |
170 | 171 |
172 |

SENTINEL slaves

173 |
174 | 175 | 176 |
177 | 178 |

179 | 讨论 180 | 181 |

182 | 183 |
184 | 195 | 196 | comments powered by Disqus 197 |
198 | 199 | 205 |
206 | 207 |
208 |
209 | 210 | 211 |
212 | 213 |
214 |

215 | © Copyright 2019, Redis 216 | 217 |

218 |
219 | Built with Sphinx using a theme provided by Read the Docs. 220 | 221 |
222 | 223 |
224 |
225 | 226 |
227 | 228 |
229 | 230 | 231 | 232 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 252 | 253 | --------------------------------------------------------------------------------