summaryrefslogtreecommitdiffstats
path: root/iredis/data/iredisrc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2020-03-21 10:28:17 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-02-07 11:16:53 +0000
commit06cba6ccd165ca8b224797e37fccb9e63f026d77 (patch)
treee82f1bc439997ae296f2e74f8a64d84c5d95f140 /iredis/data/iredisrc
parentInitial commit. (diff)
downloadiredis-06cba6ccd165ca8b224797e37fccb9e63f026d77.tar.xz
iredis-06cba6ccd165ca8b224797e37fccb9e63f026d77.zip
Adding upstream version 1.9.1.upstream/1.9.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'iredis/data/iredisrc')
-rw-r--r--iredis/data/iredisrc67
1 files changed, 67 insertions, 0 deletions
diff --git a/iredis/data/iredisrc b/iredis/data/iredisrc
new file mode 100644
index 0000000..5baef86
--- /dev/null
+++ b/iredis/data/iredisrc
@@ -0,0 +1,67 @@
+# vi: ft=dosini
+[main]
+# weather display raw redis response
+raw = False
+
+# iredis use a LRU strategy to store the completions, like keys, set members,
+# etc, this will set how many completions can iredis keep at most.
+completer_max = 300
+
+# Completion casing preference, options are: "lower", "upper", "auto"
+completion_casing = auto
+
+# if in newbie_mode, a description of commands and options will showup along
+# with completion, encourage to enable it to who is new to redis
+newbie_mode = False
+
+# show prompt in a ranibow color
+rainbow = False
+
+# retry times for connection error and timeout
+retry_times = 2
+
+socket_keepalive = True
+
+# IRedis support running shell command to parse the response, like this:
+# > get json-str | jq .
+# However that will allow any shell command to execute under iredis REPL,
+# you can disable this feature by setting this to False.
+# Default is True.
+shell = True
+
+# decode redis response, default None
+decode =
+
+# enable pager? defualt to True, you can disable it by changing it to False
+enable_pager = True
+
+# pager setting when line is too tall
+# By default 'PAGER' environment variable is used
+# pager = less -SRXF
+
+# iredis will send a `INFO` command to get the server's version, this option can
+# disable it
+no_info = False
+
+# iredis will show command hint on bottom bar, this option can disable it
+bottom_bar = True
+
+# Dangerous command warning mode will alert you before executing a dangerous
+# command, that may cause harm to the redis-server or hang server,
+# such as "KEYS", "DEL" or "SHUTDOWN".
+warning = True
+
+# IRedis log for debugging, leave this blank will disable log.
+# You don't need this unless you are debuging iredis.
+# Be careful this will log your commands input (include AUTH with password) to
+# log file.
+# eg. ~/.iredis.log
+log_location =
+
+# History file location
+history_location = ~/.iredis_history
+
+[alias_dsn]
+# example_dsn = redis://[[username]:[password]]@localhost:6379/0
+# example_dsn = rediss://[[username]:[password]]@localhost:6379/0
+# example_dsn = unix://[[username]:[password]]@/path/to/socket.sock?db=0