background image

PHP

程序员 PHP 解决 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 的死锁等待
可使用此函数...