今天在開發碰到個棘手的問題 。
當非同步請求幕後處理一個大資料量操作時 請求其他控制器都沒返回資訊了。。起初以為是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 的死結等待
可使用此函數...
http://www.bkjia.com/PHPjc/327721.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/327721.htmlTechArticle今天在開發碰到個棘手的問題 。 當非同步請求幕後處理一個大資料量操作時 請求其他控制器都沒返回資訊了。。起初以為是Ext 架構設定了...