summaryrefslogtreecommitdiff
path: root/src/help.h
Commit message (Collapse)AuthorAgeFilesLines
* redis-cli help.h updated.antirez2016-06-141-8/+13
|
* redis-cli help.h updated.antirez2016-04-131-8/+18
|
* Update redis-cli help and the script to generate it.antirez2015-11-171-8/+180
|
* Added <count> parameter to SPOP:Alon Diamant2014-12-141-2/+2
| | | | | | | | | 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
* redis-cli help.h updated.antirez2014-04-221-2/+73
|
* redis-cli: help.h updated.antirez2013-05-141-3/+13
|
* help.h update (adds bitop, bitcount, evalsha...)antirez2012-10-301-3/+28
|
* redis-cli commands description in help.h updated.antirez2012-04-271-3/+3
|
* redis-cli help.h updated. Script to generate it updated as well.antirez2012-04-031-147/+233
|
* help.h updated2.2.0-rc1antirez2010-12-151-12/+42
|
* Refactor help-related code into redis-cli.cPieter Noordhuis2010-11-281-458/+365
|
* Update help.h generator script to output man-style argument listPieter Noordhuis2010-11-281-694/+580
|
* Added redis-cli interactive help supportTj Holowaychuk2010-11-161-0/+815
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