Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to track online users in Rails?

This was always a problem for me, as rails doesn't have some mechanisms for session tracking like java frameworks do, what methods do you use to track who is currently logged on your site? I use a simple method by setting up last_visited field with current time every time user clicks somewhere on the site, and then checking for users which have updated that field in (lets say) last 10 minutes. What other methods are there besides this one?

like image 541
Vortex Avatar asked Feb 25 '09 15:02

Vortex


1 Answers

If you are using the active_record_store for your sessions, you can try something like this:

sessions = CGI::Session::ActiveRecordStore::Session.find(:all, :conditions => ["updated_at >= ?", 15.minutes.ago], :order => "created_at ASC")
sessions.each do |session|
  if session.data[:user]
    online_users << User.find(session.data[:user])
  end
end
like image 196
erik Avatar answered Sep 27 '22 23:09

erik