前端之家收集整理的这篇文章主要介绍了
PHP 解决session死锁的方法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
今天在开发碰到个棘手的问题 。
当异步请求后台处理一个大数据量操作时 请求其他控制器都没返回信息了。。起初以为是Ext 框架设置了ajax同步造成的。
后来发现时session 死锁造成其他控制器在等待session 完成后才能操作。(主要是用户登录判断需要更新session)
当PHP 处理大数据量操作时 不能及时操作完成 这时候又有访问其他控制器或者
异步请求时候会造成session 死锁现象
和同事探讨了下 可使用 session_write_close() 解决此问题
<div class="codetitle"><a style="CURSOR: pointer" data="58922" class="copybut" id="copybut58922" onclick="doCopy('code58922')"> 代码如下:
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.