Background In redis, the simplest command to read a key is GET. However, there is use case to read multiple keys at same time. Using GET with loops could be costly (especially network IO in cloud), and Redis at least provides two way to speed up: MGET and PIPELINE. Then it is nature to ask how is it different for MGET and PIPELINE, in terms of use case and performance. Benchmark Similar to redis/r

