Server Config Get
# Redis Config Get Command
* (javascript:void(0);)
* (javascript:void(0);)
* (javascript:void(0);)
* (javascript:void(0))
Redis Tutorial
(#)(#)(#)(#)(#)
## Redis Commands
(#)(#)(#)(#)(#)(#)(#)(#)[Redis Pub/Sub](#)(#)(#)(#)(#)(#)(#)
## Redis Advanced Tutorial
(#)(#)(#)(#)(#)(#)(#)(#)
[](#)(#)
(#)[](#)
# Redis Config Get Command
!(#)(#)
The Redis Config Get command is used to retrieve configuration parameters of the Redis server.
In Redis version 2.4, some parameters could not be accessed using CONFIG GET; however, in the latest Redis version 2.6, all configuration parameters can now be accessed via CONFIG GET.
### Syntax
The basic syntax of the Redis Config Get command is as follows:
redis 127.0.0.1:6379> CONFIG GET parameter
### Available Versions
>= 2.0.0
### Return Value
The value of the specified configuration parameter.
### Example
redis 127.0.0.1:6379> config get *max-*-entries* 1) "hash-max-zipmap-entries"2) "512"3) "list-max-ziplist-entries"4) "512"5) "set-max-intset-entries"6) "512"
!(#)(#)
YouTip