Is there an easy way to count the number of active users or guests (not logged in users) visiting my rails app?
Right now I have a way to count the number of logged in users in the last 15 minutes by having a last_seen_at column for the user. However I don't want to use the database to figure out the total number of active users or guests.
I am using Rails 3.