Within phpredis (the c client for redis in php), there is a 'pipeline' call and a 'multi' call. From the docs, the 'pipeline' call clearly states that all queries within the pipeline will be queued and sent all at once to redis. However, it is not clear from the docs if all queries within a multi() call in phpredis are also queued and sent all at once to redis, or if each call within multi() will result in a separate roundtrip over the network to the redis server.
So, the question is, does each call within a multi() call (as opposed to a pipeline call) in phpredis result in a new network roundtrip to redis?