Difference between revisions of "Design Specs: Session Cleanup"

From WormBaseWiki
Jump to navigationJump to search
Line 22: Line 22:
  
 
use Catalyst::Plugin::Scheduler to clean up expired sessions in a cron-like fashion
 
use Catalyst::Plugin::Scheduler to clean up expired sessions in a cron-like fashion
 +
 +
this will run at 3am on the first day of every month
 
<pre>
 
<pre>
 
   scheduler.yml
 
   scheduler.yml
 
   ---
 
   ---
   - at  : '0 3 1 * *' #this will happen at 3am the first day of every month
+
   - at  : '0 3 1 * *'  
 
     event : /cron/remove_sessions
 
     event : /cron/remove_sessions
 
</pre>
 
</pre>

Revision as of 16:14, 31 January 2011

session storage

Session::Store::DBI

  __PACKAGE__->config->{'Plugin::Session'} = {
              expires   => 3600,
	      dbi_dbh   => 'Schema', 
	      dbi_table => 'sessions',
	      dbi_id_field => 'id',
	      dbi_data_field => 'session_data',
	      dbi_expires_field => 'expires',
  };

note: Catalyst::Plugin::Session::Store::DBIC does not compatible with Session::PerUser plugin.

session cleanup

browser session will expire after 3600 second as set in the config.

logged in user session does not expire

use Catalyst::Plugin::Scheduler to clean up expired sessions in a cron-like fashion

this will run at 3am on the first day of every month

   scheduler.yml
   ---
  - at  : '0 3 1 * *'   
    event : /cron/remove_sessions