gulaftab / redis

Automatically exported from code.google.com/p/redis
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

The command "config get databases" does not return #652

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
redis 127.0.0.1:6379> CONFIG GET databases
(empty list or set)

redis 127.0.0.1:6379> CONFIG GET *
 1) "dir"
 2) "/var/db/redis"
 3) "dbfilename"
 4) "dump.rdb"
 5) "requirepass"
 6) (nil)
 7) "masterauth"
 8) (nil)
 9) "maxmemory"
10) "0"
11) "maxmemory-policy"
12) "volatile-lru"
13) "maxmemory-samples"
14) "3"
15) "timeout"
16) "300"
17) "appendonly"
18) "no"
19) "no-appendfsync-on-rewrite"
20) "no"
21) "appendfsync"
22) "everysec"
23) "save"
24) "900 1 300 10 60 10000"
25) "auto-aof-rewrite-percentage"
26) "100"
27) "auto-aof-rewrite-min-size"
28) "67108864"
29) "slave-serve-stale-data"
30) "yes"
31) "hash-max-zipmap-entries"
32) "512"
33) "hash-max-zipmap-value"
34) "64"
35) "list-max-ziplist-entries"
36) "512"
37) "list-max-ziplist-value"
38) "64"
39) "set-max-intset-entries"
40) "512"
41) "zset-max-ziplist-entries"
42) "128"
43) "zset-max-ziplist-value"
44) "64"
45) "slowlog-log-slower-than"
46) "10000"
47) "slowlog-max-len"
48) "1024"

Original issue reported on code.google.com by Max.Kama...@gmail.com on 31 Aug 2011 at 7:38