Skip to content

Instantly share code, notes, and snippets.

@vito
Created December 4, 2010 17:38
Show Gist options
  • Save vito/728346 to your computer and use it in GitHub Desktop.
Save vito/728346 to your computer and use it in GitHub Desktop.
session garbage collector
Timer do: {
Session all each: { s |
when: (Timer now - s created-at > 1 month) do: {
"Cleaning up expired session " (.. s id) print
s delete!
}
}
} every: 1 day
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment