public void WriteCommand(params byte[][] cmdWithBinaryArgs)
		{
            RedisNativeClient.ExpectIntCommand cmd = new RedisNativeClient.ExpectIntCommand(client);
            cmd.init(cmdWithBinaryArgs);
            cmd.execute();
            commands.Enqueue(cmd);
		}
 public void WriteCommand(params byte[][] cmdWithBinaryArgs)
 {
     RedisNativeClient.ExpectIntCommand cmd = new RedisNativeClient.ExpectIntCommand(client);
     cmd.init(cmdWithBinaryArgs);
     cmd.execute();
     commands.Enqueue(cmd);
 }