Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP 的 Redis 客户端驱动程序 PhpRedis 将 MULTI/EXEC 内部的多个命令多次或仅一次传输到 Redis 服务器?
谢谢
PhpRedis:https ://github.com/nicolasff/phpredis
根据源代码,PhpRedis 显然将 MULTI/EXEC 块作为多个命令发送(涉及多个网络数据包)。然而,管道作为单个命令块发送。