1 */4 * * * find /tmp/ -name "ruby_sess*" -cmin +600 -exec rm \{} \;
Deletes sessions over ten hours old every four hours. Otherwise your /tmp will end up overflowing. This only applies you use the file store method of session storage with Rails.
11381 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 */4 * * * find /tmp/ -name "ruby_sess*" -cmin +600 -exec rm \{} \;
You need to create an account or log in to post comments to this site.