xiaodouya33 发表于 2017-12-20 21:01:56

Redis中connect与pconnect区别?

Description  Connects to a Redis instance or reuse a connection already established with pconnect/popen.
  pconnect/popen用于连接一个Redis的实例或者复用一个已经存在的实例。
  The connection will not be closed on close or end of request until the php process ends. So be patient on to many open FD's (specially on redis server side) when using persistent connections on many servers connecting to one redis server.
  这个连接将不会被主动关闭,比如使用close(),或者PHP执行结束这个连接都不会被主动关闭。当有大量的connect请求在redis服务器端时,使用持久化的连接对象。

  Also more than one persistent connection can be made>  一个持久化的连接实例,可以使用HOST+PORT+TIMEOUT或者HOST+persistent_id或者SOCKET+TIMEOUT的方式创建。
  This feature is not available in threaded versions. pconnect and popen then working like their non persistent equivalents.
  pconnect函数和popen函数在线程版本中不能被使用。
页: [1]
查看完整版本: Redis中connect与pconnect区别?