doucheyi1347 2012-08-16 10:42
浏览 31
已采纳

Oracle持久连接最大化服务器与异步PHP脚本

I have written a simple OCI wrapper class in PHP which uses persistent connections (oci_pconnect). The class destructor calls oci_close.

This class is used for all my AJAX PHP scripts and so is called a lot. However, despite using persistent connections and oci_close not removing these from the cache (as per my understanding), the number of open connections to the database is maxing out, causing the system to fail. I was expecting the number of open connections to be just one for the whole app!

Am I doing something obviously wrong?


Skeleton code:

class Oracle {
  private $connection;
  private $connected;

  function __construct($connectionString, $username, $password) {
    if (!($this->connection = @oci_pconnect($username, $password, $connectionString))) {
      echo 'Cannot connect to '.$username.'@'.$connectionString;
      $this->connected = false;
    } else {
      $this->connected = true;
    }
  }

  function __destruct() {
    if ($this->connected) {
      oci_close($this->connection);
    }
  }
}
  • 写回答

1条回答 默认 最新

  • dongyuli0964 2012-08-16 11:13
    关注

    Do NOT close the connection if you want it to be persistent.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料