// publish의 리턴값은 전달한 message 수를 가리킨다
redis 127.0.0.1:6379> publish a 486
(integer) 0
"Nothing is kept in Redis data structures."
- https://stackoverflow.com/questions/27745842/redis-pubsub-and-message-queueing
# client0
> LPUSH list 1 2 3 4 5
(integer) 5
# client1
> RPUSH list 6 7 8 9 10
(integer) 10
> RPOP list
"10"
# client0
> RPOP list
"9"