08:43:45 GMT Dose PHP module "predis" support "pipeline" in redis cluster mode? 08:45:20 GMT sunshare, from https://github.com/nrk/predis => "Command pipelining on both single nodes and clusters (client-side sharding only)." 09:40:48 GMT 09:40:51 GMT $redisServers = [ 'tcp://192.168.1.109:6401', 'tcp://192.168.1.109:6402', 'tcp://192.168.1.109:6403', 'tcp://192.168.1.109:6501', 'tcp://192.168.1.109:6502', 'tcp://192.168.1.109:6503', ]; $options = [ 'profile' => '3.2', 'cluster' => 'redis', ]; $redis = new Predis\Client($redisServers, $options); $ret = $redis->pipeline()->get("hello11")->get("hello22")->execute(); print_r($ret); 09:45:08 GMT https://gist.github.com/sunshare/d82835abc7176c1d81b18643ea17f8b2 09:45:36 GMT PHP Fatal error: Uncaught Predis\Response\ServerException 09:52:15 GMT sunshare, sorry, I don't use this library, not idea how it works (I was able to answer your 1st question only because I know how to read doc) 09:56:31 GMT thanks 11:13:03 GMT Is there maximum length limit to Redis Script argument or key?