Skip to content

Instantly share code, notes, and snippets.

@yuki777
Last active August 2, 2016 06:46
Show Gist options
  • Select an option

  • Save yuki777/335b3485b6b49566cf979a0a76da8563 to your computer and use it in GitHub Desktop.

Select an option

Save yuki777/335b3485b6b49566cf979a0a76da8563 to your computer and use it in GitHub Desktop.
PHPで作ったサイトがたまに遅くなる, ガベージコレクション, session.gc_divisor, session.gc_probability ref: http://qiita.com/yuki777/items/ec9975882fd730b9133b
php -i|grep session.gc
session.gc_divisor => 1000 => 1000
session.gc_maxlifetime => 1440 => 1440
session.gc_probability => 1 => 1
session.gc_probability = 0
0 * * * * find /tmp -type f -name "sess_*" -mmin +120 -print0 | xargs -0 rm # 120(分)は必要に応じて変更
php -i|grep session.gc
session.gc_divisor => 100 => 100
session.gc_maxlifetime => 1440 => 1440
session.gc_probability => 1 => 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment