summaryrefslogtreecommitdiff
path: root/src/redis-cli.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #7005 from hwware/memoryleakfix-redis-cliSalvatore Sanfilippo2020-03-231-0/+2
|\ | | | | fix potential memory leak in redis-cli lua debug mode
| * fix potentical memory leak in redis-clihwware2020-03-181-0/+2
| |
* | Support Redis Cluster Proxy PROXY INFO commandartix2020-03-161-1/+5
|/
* Restore newline at the end of redis-cli.cantirez2020-03-131-1/+2
|
* add askpass modelifubang2020-03-051-1/+19
| | | | Signed-off-by: lifubang <lifubang@acmcoder.com>
* Merge pull request #6804 from qetu3790/unstableSalvatore Sanfilippo2020-03-021-1/+1
|\ | | | | Fix not used constant in lru_test_mode.
| * Fix not used constant in lru_test_mode.qetu37902020-01-231-1/+1
| | | | | | LRU_CYCLE_PERIOD is defined,but not used.
* | correct help info for --user and --passlifubang2020-02-121-2/+2
| | | | | | | | Signed-off-by: lifubang <lifubang@acmcoder.com>
* | fix ssl flag check for redis-clilifubang2020-02-041-9/+10
| | | | | | | | Signed-off-by: lifubang <lifubang@acmcoder.com>
* | TLS: Fix missing initialization in redis-cli.Yossi Gottlieb2020-01-291-0/+9
|/
* redis-cli: some refactoring about not logging AUTH & co.antirez2019-12-121-5/+13
|
* Ommits from redis-cli's historyItamar Haber2019-10-311-2/+6
|
* fix comment typo in redis-cli.chappynote39662019-10-251-1/+1
|
* Merge remote-tracking branch 'upstream/unstable' into tlsYossi Gottlieb2019-10-161-12/+89
|\
| * Merge pull request #6304 from dbenders/fix-issue-6141Salvatore Sanfilippo2019-09-301-1/+1
| |\ | | | | | | Fix issue #6141: cluster rebalance does not support binary key
| | * pass len to alloc in clusterManagerMigrateKeysInReplyDiego Bendersky2019-08-051-1/+1
| | |
| * | redis-cli: support for ACL style user/pass AUTH.antirez2019-09-231-3/+21
| | |
| * | redis-cli: CSV and RAW target for more RESP3 types.antirez2019-09-231-1/+27
| | |
| * | redis-cli: ability to start a session in RESP3 mode.antirez2019-09-231-3/+26
| | |
| * | redis-cli: AUTH can now have 3 arguments as well.antirez2019-09-231-1/+2
| | |
| * | RESP3: varbatim handling for other redis-cli outputs.antirez2019-09-231-0/+2
| | |
| * | RESP3: implementation of verbatim output with TTY target.antirez2019-09-231-3/+10
| | |
* | | Fix compile warnings when BUILD_TLS=no.Yossi Gottlieb2019-10-151-0/+1
| | |
* | | TLS: Improve CA certifiate configuration options.Yossi Gottlieb2019-10-081-7/+76
| | | | | | | | | | | | | | | | | | | | | This adds support for explicit configuration of a CA certs directory (in addition to the previously supported bundle file). For redis-cli, if no explicit CA configuration is supplied the system-wide default configuration will be adopted.
* | | TLS: Connections refactoring and TLS support.Yossi Gottlieb2019-10-071-3/+59
|/ / | | | | | | | | | | | | | | * Introduce a connection abstraction layer for all socket operations and integrate it across the code base. * Provide an optional TLS connections implementation based on OpenSSL. * Pull a newer version of hiredis with TLS support. * Tests, redis-cli updates for TLS support.
* | redis-cli: always report server errors on read errors.antirez2019-09-041-1/+8
|/ | | | | | | | | | | Before this commit we may have not consumer buffers when a read error is encountered. Such buffers may contain errors that are important clues for the user: for instance a protocol error in the payload we send in pipe mode will cause the server to abort the connection. If the user does not get the protocol error, debugging what is happening can be a nightmare. This commit fixes issue #3756.
* Merge pull request #5921 from vattezhang/unstable_tempSalvatore Sanfilippo2019-03-131-1/+1
|\ | | | | fix: fix the if condition in clusterManagerShowClusterInfo
| * fix: fix the if condition in clusterManagerShowClusterInfovattezhang2019-03-121-1/+1
| |
* | Merge pull request #5894 from soloestoy/fix-rdb-warningSalvatore Sanfilippo2019-03-131-1/+1
|\ \ | | | | | | Fix compile some warnings
| * | Fix compile warning in redis-cli.czhaozhao.zz2019-03-131-1/+1
| |/
* | Merge pull request #5913 from wurongxin1987/unstableSalvatore Sanfilippo2019-03-121-1/+1
|\ \ | | | | | | fix a bufferoverflow bug
| * | fix a bufferoverflow bugwurongxin2019-03-101-1/+1
| |/
* | Cluster Manager: add importing/migrating nodes to backup infoartix2019-03-061-0/+30
|/
* Cluster Manager backup: remove --cluster-ignore-issue optionartix2019-03-011-27/+23
| | | | | | Always save the backup, even if there are problems in the cluster. Just display a warn message and save "cluster_errors" property inside the json.
* Cluster Manager: check cluster before backupartix2019-03-011-32/+67
| | | | | | - Prevent cluster backup if cluster has issues and needs to be fixed. This behaviour can be overridden by adding the option '--cluster-ignore-issues'
* Cluster Manager: 'backup' commandartix2019-03-011-10/+117
|
* Cluster Manager: change join issue messageartix2019-02-281-2/+2
|
* Cluster Manager: change text alert clusterManagerWaitForClusterJoinartix2019-02-281-3/+3
|
* Cluster Manager: code cleanupartix2019-02-281-12/+10
|
* Cluster Manager: fix bus error in clusterManagerGetLinkStatusartix2019-02-281-7/+13
|
* Cluster Manager: fix memory leaks in clusterManagerGetDisconnectedLinksArtix2019-02-281-1/+2
|
* Cluster Manager: fix memory leak in clusterManagerWaitForClusterJoinartix2019-02-281-4/+5
|
* Cluster Manager: improve join issue checkingartix2019-02-281-15/+40
|
* Cluster Manager: check for unreachable nodes during cluster join.artix2019-02-281-0/+128
|
* Merge pull request #5850 from artix75/devSalvatore Sanfilippo2019-02-221-0/+6
|\ | | | | Cluster Manager: fix replica assignment anti-affinity (create)
| * Cluster Manager: fix replica assigment anti-affinity (create)artix2019-02-201-0/+6
| | | | | | | | Fix issue #5849
* | Merge pull request #4811 from oranagra/cli-diskless-replSalvatore Sanfilippo2019-02-211-10/+102
|\ \ | | | | | | Add redis-cli support for diskless replication (CAPA EOF)
| * | Add redis-cli support for diskless replication (CAPA EOF)Oran Agra2018-04-021-10/+102
| | | | | | | | | | | | | | | | | | when setting repl-diskless-sync yes, and sending SYNC. redis-cli needs to be able to understand the EOF marker protocol in order to be able to skip or download the rdb file
* | | redis-cli add support for --memkeys, fix --bigkeys for module typesOran Agra2019-02-211-81/+132
| |/ |/| | | | | | | | | | | | | | | * bigkeys used to fail on databases with module type keys * new code adds more types when it discovers them, but has no way to know element count in modules types yet * bigkeys was missing XLEN command for streams * adding --memkeys and --memkeys-samples to make use of the MEMORY USAGE command see #5167, #5175
* | Cluster Manager: remove unused code elementsartix2019-01-241-13/+8
| |