PHP 解决session死锁的方法
程序员文章站
2023-04-07 18:26:36
今天在开发碰到个棘手的问题 。当异步请求后台处理一个大数据量操作时 请求其他控制器都没返回信息了。。起初以为是ext 框架设置了ajax同步造成的。后来发现时s...
今天在开发碰到个棘手的问题 。
当异步请求后台处理一个大数据量操作时 请求其他控制器都没返回信息了。。起初以为是ext 框架设置了ajax同步造成的。
后来发现时session 死锁造成其他控制器在等待session 完成后才能操作。(主要是用户登录判断需要更新session)
当php 处理大数据量操作时 不能及时操作完成 这时候又有访问其他控制器或者
异步请求时候会造成session 死锁现象
和同事探讨了下 可使用 session_write_close() 解决此问题
description
void session_write_close ( void )
end the current session and store session data.
session data is usually stored after your script terminated without the need to call session_write_close(), but as session data is locked to prevent concurrent writes only one script may operate on a session at any time. when using framesets together with sessions you will experience the frames loading one by one due to this locking. you can reduce the time needed to load all the frames by ending the session as soon as all changes to session variables are done.
功能: 结束当前的session 操作 保存session 数据
说的很明白了, 当脚本请求没有调用session_write_close(); 时虽然 session 的数据是存储住了。但是 session date(也就是session 文件) 是锁住状态
是为了避免 其他应用此时操作session 造成不必要后果 当使用框架时 不同文件可能会不停地操作session 为了不造成其他操作对当前session 的死锁等待
可使用此函数...
当异步请求后台处理一个大数据量操作时 请求其他控制器都没返回信息了。。起初以为是ext 框架设置了ajax同步造成的。
后来发现时session 死锁造成其他控制器在等待session 完成后才能操作。(主要是用户登录判断需要更新session)
当php 处理大数据量操作时 不能及时操作完成 这时候又有访问其他控制器或者
异步请求时候会造成session 死锁现象
和同事探讨了下 可使用 session_write_close() 解决此问题
复制代码 代码如下:
description
void session_write_close ( void )
end the current session and store session data.
session data is usually stored after your script terminated without the need to call session_write_close(), but as session data is locked to prevent concurrent writes only one script may operate on a session at any time. when using framesets together with sessions you will experience the frames loading one by one due to this locking. you can reduce the time needed to load all the frames by ending the session as soon as all changes to session variables are done.
功能: 结束当前的session 操作 保存session 数据
说的很明白了, 当脚本请求没有调用session_write_close(); 时虽然 session 的数据是存储住了。但是 session date(也就是session 文件) 是锁住状态
是为了避免 其他应用此时操作session 造成不必要后果 当使用框架时 不同文件可能会不停地操作session 为了不造成其他操作对当前session 的死锁等待
可使用此函数...
上一篇: 基于PHP服务端图片生成缩略图的方法详解
下一篇: php之CodeIgniter学习笔记
推荐阅读
-
从立创EDA导入AD19库的方法(解决无法导入封装库的问题)
-
PHP抓取网页、解析HTML常用的方法总结_php实例
-
smarty中英文多编码字符截取乱码问题解决方法_php实例
-
php将图片保存入mysql数据库失败的解决方法_PHP
-
php删除文本文件中重复行的方法,_PHP教程
-
ThinkPHP自动填充实现无限级分类的方法,thinkphp填充_PHP教程
-
php ci框架中加载css和js文件失败的解决方法_PHP
-
thinkPHP中多维数组的遍历方法_PHP
-
php自动加载类__autoload()的方法
-
php通过array_merge()函数合并关联和非关联数组的方法,array_merge数组