Questions tagged «garbage-collecting»

2
为什么Debian用cron作业清理php会话而不是使用php的内置垃圾收集器?
Debian和衍生产品(Ubuntu)不使用php会话垃圾收集器 session.gc_probability = 0 相反,他们使用cron /etc/cron.d/php5 09,39 * * * * root [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -depth -mindepth 1 -maxdepth 1 -type f -cmin +$(/usr/lib/php5/maxlifetime) ! -execdir fuser -s {} 2>/dev/null \; -delete 为什么Debian选择这样做?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.