Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个用 PHP/MySQL 开发的学校网站。我的一位经理抱怨说系统会在一段时间后自动将他注销。该经理的工作时间是网站使用高峰期。
我的问题是,如果很多人同时登录,这会导致会话超时/自动注销或类似的事情吗?
这是因为垃圾收集器的默认会话超时时间为 1440 秒。
您可以提高超时时间,或者每 10 分钟放弃一次 AJAX 调用,以重置超时时间……这就是所谓的“会话拉伸”。