Last active
August 2, 2016 06:46
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| php -i|grep session.gc | |
| session.gc_divisor => 1000 => 1000 | |
| session.gc_maxlifetime => 1440 => 1440 | |
| session.gc_probability => 1 => 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| session.gc_probability = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0 * * * * find /tmp -type f -name "sess_*" -mmin +120 -print0 | xargs -0 rm # 120(分)は必要に応じて変更 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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