#redis
Read more stories on Hashnode
Articles with this tag
Rate limiter is a mechanism that controls the number of requests or tasks performed within a certain period. It helps prevent excessive resource usage...
Queue is a data structure in the programming. It is used to transmit the message between system components. Queue operates the FIFO ( First in first...
SUBSCRIBE, UNSUBSCRIBE and PUBLISH implement the Publish/Subscribe messaging paradigm where (citing Wikipedia) senders (publishers) are not programmed...
I. Redis Introduce Redis is a database management system with key-value data in memory. It is open-source. Redis means "Remote Dictionary Server" and...
File docker-compose version: '3' services: redis-master: image: redis container_name: redis-master ports: - "6279:6379" ...
File docker compose version: '3' services: redis-master: image: redis container_name: redis-master ports: - "6279:6379" ...