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.
redis 客户端是否使用长连接?如果不是长连接,为什么不使用长连接来降低建立连接的成本
Redis客户端使用TCP连接,该连接一直持续到任何一方终止它,因此如何处理连接取决于客户端库。我假设大多数客户端会尝试在使用它们的应用程序生命周期内保持已建立的连接(或在池的情况下为多个连接)打开,以防止在每个执行命令之前进行握手。