- 22 Mar, 2023 1 commit
-
-
Oran Agra authored
preparing release of 7.2 RC1
-
- 22 Oct, 2022 1 commit
-
-
Binbin authored
Make PFMERGE source key optional in docs, add tests with one input key, add tests on missing source keys (#11205) The following two cases will create an empty destkey HLL: 1. called with no source keys, like `pfmerge destkey` 2. called with non-existing source keys, like `pfmerge destkey non-existing-source-key` In the first case, in `PFMERGE`, the dest key is actually one of the source keys too. So `PFMERGE k1 k2` is equivalent to `SUNIONSTORE k1 k1 k2`, and `PFMERGE k1` is equivalent to `SUNIONSTORE k1 k1`. So the first case is reasonable, the source key is actually optional. And the second case, `PFMERGE` on missing keys should succeed and create an empty dest. This is consistent with `PFCOUNT`, and also with `SUNIONSTORE`, no need to change.
-
- 11 Jul, 2022 1 commit
-
-
Oran Agra authored
-
- 07 Jun, 2022 1 commit
-
-
Binbin authored
Currently generate-command.help.rb dose not handle the multiple_token flag, handle this flag in this PR. The format is the same as redis-cli rendering. ```diff - bitfield_ro key GET encoding offset [encoding offset ...] + bitfield_ro key GET encoding offset [GET encoding offset ...] ``` Re run generate-command-code.py which was forget in #10820. Also change the flag value from string to bool, like "true" to true
-
- 06 Jun, 2022 1 commit
-
-
Oran Agra authored
before releasing 7.0.1
-
- 06 Apr, 2022 1 commit
-
-
Itamar Haber authored
Fixes in command argument in json files * Fixes BITFIELD's syntax ("sub-commands" can be repeated, and OVERFLOW is only valid for SET and INCR) * Improves readability of SET (reordered) * Fixes GEOSEARCH and GEOSEARCH_RO syntices (use `oneof` for mutually exclusive group instead of `optional`) * Fixes MIGRATE syntax (use `oneof` for mutually exclusive group instead of `optional`) * Fixes MODULE LOADEX syntax (the `CONFIG` token should be repeated too when using multiple configs) other: * make generate-command-help.rb accept a path to commands.json, or read it from stdin (e.g. `generate-commands-json.py | generate-command-help.rb -`)
-
- 05 Apr, 2022 1 commit
-
-
Oran Agra authored
-
- 28 Feb, 2022 1 commit
-
-
Oran Agra authored
re-generate help.h from commands.json
-
- 05 Feb, 2022 1 commit
-
-
Binbin authored
1. Update fcall.json and fcall_ro.json 2. Update command.c 3. Update help.h
-
- 30 Jan, 2022 1 commit
-
-
Oran Agra authored
-
- 27 Jan, 2022 1 commit
-
-
Yossi Gottlieb authored
There are some inevitable changes between the old and new output, as a result of the different `commands.json` semantics.
-
- 18 May, 2021 1 commit
-
-
Oran Agra authored
As far as i can tell it shows up in redis-cli in both HELP, e.g. `help client list`, and also in the command completion tips, but it is unclear what it was needed for. It exists since the very first commit that added this mechanism.
-
- 06 Apr, 2021 1 commit
-
-
Oran Agra authored
-
- 22 Feb, 2021 1 commit
-
-
Oran Agra authored
-
- 31 Jan, 2021 1 commit
-
-
Oran Agra authored
-
- 08 Nov, 2020 1 commit
-
-
sundb authored
-
- 12 Jun, 2020 1 commit
-
-
antirez authored
-
- 10 Jun, 2020 1 commit
-
-
Paul Spooren authored
The `LRANK` command returns the index (position) of a given element within a list. Using the `direction` argument it is possible to specify going from head to tail (acending, 1) or from tail to head (decending, -1). Only the first found index is returend. The complexity is O(N). When using lists as a queue it can be of interest at what position a given element is, for instance to monitor a job processing through a work queue. This came up within the Python `rq` project which is based on Redis[0]. [0]: https://github.com/rq/rq/issues/1197 Signed-off-by:
Paul Spooren <mail@aparcar.org>
-
- 30 Apr, 2020 2 commits
- 17 Oct, 2018 1 commit
-
-
antirez authored
-
- 27 Jun, 2018 1 commit
-
-
Mustafa Paltun authored
-
- 07 Jun, 2018 1 commit
-
-
antirez authored
-
- 14 Jun, 2016 1 commit
-
-
antirez authored
-
- 13 Apr, 2016 1 commit
-
-
antirez authored
-
- 17 Nov, 2015 1 commit
-
-
antirez authored
-
- 14 Dec, 2014 1 commit
-
-
Alon Diamant authored
spopCommand() now runs spopWithCountCommand() in case the <count> param is found. Added intsetRandomMembers() to Intset: Copies N random members from the set into inputted 'values' array. Uses either the Knuth or Floyd sample algos depending on ratio count/size. Added setTypeRandomElements() to SET type: Returns a number of random elements from a non empty set. This is a version of setTypeRandomElement() that is modified in order to return multiple entries, using dictGetRandomKeys() and intsetRandomMembers(). Added tests for SPOP with <count>: unit/type/set, unit/scripting, integration/aof -- Cleaned up code a bit to match with required Redis coding style
-
- 22 Apr, 2014 1 commit
-
-
antirez authored
-
- 14 May, 2013 1 commit
-
-
antirez authored
-
- 30 Oct, 2012 1 commit
-
-
antirez authored
-
- 27 Apr, 2012 1 commit
-
-
antirez authored
-
- 03 Apr, 2012 1 commit
-
-
antirez authored
-
- 19 Dec, 2010 1 commit
-
-
antirez authored
-
- 15 Dec, 2010 1 commit
-
-
antirez authored
-
- 28 Nov, 2010 2 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 16 Nov, 2010 1 commit
-
-
Tj Holowaychuk authored
updated via commands.json in redis-doc repo. Currently use `make src/help.h` to re-generate. The following are valid from the REPL: help help [command] help [group] help groups ex: help sort help hash
-