Home Backend Development PHP Tutorial php APC 造成的session无法保存bug及解决办法

php APC 造成的session无法保存bug及解决办法

Jun 13, 2016 pm 01:08 PM
apc php session

php APC 造成的session无法保存bug及解决方法

APC php 脚本的加速效果是明显的,基本可以将 php-fpm 服务器负载能力提高到 2 倍,所以在生产环境中,需要尽可能使用 APC 来加速 php 脚本。

?

这是我通过web?bench 压力测试得出的结论,而在生产环境中,使用 APC 之后,脚本的执行速度确实有提高 (可能达到10-20%

?

生产环境中使用 session_set_save_handler session保存到 MySQL 内存表中,并安装了 APC 扩展,就发现无法保存 session ,后经过反复排查是因为 APC 引起,从网上找到的原因分析:

?

写道
一般的环境Session 是静态编译进 PHP 的 , 所以 Session 模块一定先于动态编译进 PHP 的 APC 被载入 , 也就是说 , 在请求关闭时期 , APC 的请求关闭函数 , 一定会先于 Session 的请求关闭函数被调用 .

所以, 当 Session 的请求关闭函数调用的时候 , 执行环境的 Class Table 已经为空 , 当然也就会抛出类找不到的 fatalerror 了。 ?

?

--实质上数据库类的实例已经被销毁,引发了无法看到的错误。

?

?

对此解决办法非常简单:

php 程序执最后,手工调用 session_write_close();

?

或在register_shutdown_function 定义的函数中调用也可。

?

但是如果使用php 默认的文件存储 session 机制,则不存在此问题。

?

?

?

?

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

CakePHP Project Configuration

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

CakePHP Date and Time

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

CakePHP File upload

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

CakePHP Routing

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

Discuss CakePHP

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

How To Set Up Visual Studio Code (VS Code) for PHP Development

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP Quick Guide

See all articles