Category Archives: redis

Khóa học miễn phí Redis – Publish Subscribe nhận dự án làm có lương

Redis – Publish Subscribe Redis Pub/Sub implements the messaging system where the senders (in redis terminology called publishers) sends the messages while the receivers (subscribers) receive them. The link by which the messages are transferred is called channel. In Redis, a client can subscribe any number of channels. Example Following example explains how publish subscriber […]

Khóa học miễn phí Redis – Connections nhận dự án làm có lương

Redis – Connections Redis connection commands are basically used to manage client connections with Redis server. Example Following example explains how a client authenticates itself to Redis server and checks whether the server is running or not. redis 127.0.0.1:6379> AUTH “password” OK redis 127.0.0.1:6379> PING PONG Redis Connection Commands Following table lists some basic commands […]