Hi, there as i had seen the compatibility of Redis with Google Cloud, how can we enhance the performance
Hi @aniket
Redis Enterprise Cloud is available on GCP marketplace, you can simply pay as you use.
Redis Enteprise Cloud is beyond caching and allows you much better HA, persistence and throughput.
To effectively use redis, you can refer to Redis best practises: https://redislabs.com/redis-best-practices/introduction/
Also a few tricks to enhance redis performance would be to tweak your queries to reduce round trip overhead:
- Using pipelining: https://redis.io/topics/pipelining
- Using bulk commands, e.g. MGET, MSET, HMGET