summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/ltrim.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/ltrim.md')
-rw-r--r--iredis/data/commands/ltrim.md22
1 files changed, 13 insertions, 9 deletions
diff --git a/iredis/data/commands/ltrim.md b/iredis/data/commands/ltrim.md
index fd7fca5..7cae0c7 100644
--- a/iredis/data/commands/ltrim.md
+++ b/iredis/data/commands/ltrim.md
@@ -1,6 +1,7 @@
Trim an existing list so that it will contain only the specified range of
-elements specified. Both `start` and `stop` are zero-based indexes, where `0` is
-the first element of the list (the head), `1` the next element and so on.
+elements specified.
+Both `start` and `stop` are zero-based indexes, where `0` is the first element
+of the list (the head), `1` the next element and so on.
For example: `LTRIM foobar 0 2` will modify the list stored at `foobar` so that
only the first three elements of the list will remain.
@@ -11,10 +12,12 @@ element and so on.
Out of range indexes will not produce an error: if `start` is larger than the
end of the list, or `start > end`, the result will be an empty list (which
-causes `key` to be removed). If `end` is larger than the end of the list, Redis
-will treat it like the last element of the list.
+causes `key` to be removed).
+If `end` is larger than the end of the list, Redis will treat it like the last
+element of the list.
-A common use of `LTRIM` is together with `LPUSH` / `RPUSH`. For example:
+A common use of `LTRIM` is together with `LPUSH` / `RPUSH`.
+For example:
```
LPUSH mylist someelement
@@ -22,10 +25,11 @@ LTRIM mylist 0 99
```
This pair of commands will push a new element on the list, while making sure
-that the list will not grow larger than 100 elements. This is very useful when
-using Redis to store logs for example. It is important to note that when used in
-this way `LTRIM` is an O(1) operation because in the average case just one
-element is removed from the tail of the list.
+that the list will not grow larger than 100 elements.
+This is very useful when using Redis to store logs for example.
+It is important to note that when used in this way `LTRIM` is an O(1) operation
+because in the average case just one element is removed from the tail of the
+list.
@return