我真的需要 PHP maxlifetime 每小时 cron 作业吗?

我真的需要 PHP maxlifetime 每小时 cron 作业吗?

在我的 Debian Wheezy 上,每半小时运行一次 cron 作业:

find /var/lib/php5/ -depth -mindepth 1 -maxdepth 1 -type f -ignore_readdir_race -cmin +$(/usr/lib/php5/maxlifetime) ! -execdir fuser -s {} 2>/dev/null \; -delete)

这会删除较旧的 PHP 状态/会话文件。我想完全放弃这个 cron 作业,或者至少降低其频率。在以下哪种用例中可以做到这一点?

  1. 没有运行 PHP 代码的服务器
  2. 服务器上有一些使用 PHP 的奇怪页面,但并不像 CMS 那样重要
  3. 运行某些 PHP CMS 的服务器,有用户会话,但页面浏览量不是太多(比如每月最多 50,000 次)

相关内容