A collection of 1 post

Connecting to a remote (Azure) Redis Console on Windows via Redis CLI

Installing the Redis CLI You'll need the Chocolatey package manager if you have not yet installed this. choco install redis-64 Connecting to the remote instance Find the password/access key on Azure > Home > Redis Caches > my-redis-db > Access keys> Then whip out our favourite shell redis-cli -h my-redis-db.redis.cache.windows.net -p 6379 -a <access key on Azure> Useful commands # Show all keys keys * # Remove all keys flushall # Monitor gets and sets monitor ...