Skip to content

Commit

Permalink
再次修改 LTRIM 命令的文档,感谢 @limodou 的提醒。
Browse files Browse the repository at this point in the history
  • Loading branch information
huangzworks committed Dec 19, 2013
1 parent 2f6bf2e commit defcdfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions list/ltrim.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ LTRIM
# 情况 2: stop 比列表的最大下标还要大


redis> LTRIM alpha 1 10086 # 删除 alpha 列表索引 1 至索引 10086 上的位置
redis> LTRIM alpha 1 10086 # 保留 alpha 列表索引 1 至索引 10086 上的元素
OK

redis> LRANGE alpha 0 -1 # 只有索引 1 上的元素被删除了,其他元素还在
redis> LRANGE alpha 0 -1 # 只有索引 0 上的元素 "e" 被删除了,其他元素还在
1) "l"
2) "l"
3) "o"
Expand Down

0 comments on commit defcdfb

Please sign in to comment.