Redis Desktop Manager has a convenient feature that allows us to monitor live updates via a GUI. Simply click on the "Enable Live Update (Ctrl+L) button on Windows and when a client makes an update, it will be visible without reloading. ...
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 ...