Create a new connection to the Redis server
Send a series of commands as a pipeline
Examples:
pipeline(["SADD shopping_cart Shirt", "SADD shopping_cart Pant", "SADD shopping_cart Boots"])
Simplified call to EVAL
Call Redis using any type T that can be converted to a string
Send a string that is already encoded in the Redis protocol
Execute commands in a MULTI/EXEC block.