redis is single threaded.
ElastiCache is fully managed Redis and Memcached.
redis is single threaded.
ElastiCache is fully managed Redis and Memcached.
brew install redis
redis-cli <hostname>
hostname:6379>ping
PONG
Note, a quick way of testing without installing redis
is to use nc
. i.e.
1 2 |
$ (printf "PING\r\n";) | nc <hostname> 6379 +PONG |
You can also do this with curl
.
See: