Install Redis Cache on Windows 10 and Azure



Install Redis Cache on Windows 10 and Azure

Install Redis Cache on Windows 10 and Azure

1. Install Redis on Windows 10 – There are three ways
1.1 Microsoft Archive Redis – https://github.com/microsoftarchive/redis/releases
1.2 Memurai Redis – https://www.memurai.com/
1.3 Docker Image Redis – https://hub.docker.com/_/redis
Important docker commends are
docker –version // To check docker version
docker images // To check local images
docker pull redis // To pull redis image to local
docker run –name myLocalRedis -p 6379:6379 redis // To create container for redis image

2. Redis Client tools – There are 2 tools.
2.1 RedisInsights – https://redislabs.com/redis-enterprise/redis-insight/
– Free: until 30 MB of storage
2.2 RedisDesktop – https://redisdesktop.com/
– It is a commercial, only free for 14-days trail

3. Best Practices For ‘Azure Cache for Redis’ – https://docs.microsoft.com/en-au/azure/azure-cache-for-redis/cache-best-practices

4. Docker Installation Issue – https://github.com/docker/for-win/issues/4470

5. To Check Azure Redis Updates – https://azure.microsoft.com/en-au/updates/

6. Available Cache services in Azure – https://feedback.azure.com/forums/169382-cache

Comments are closed.