Do they just store the user_id along with session data in the session table?
Is CodeIgniter’s Session library’s DB a farely good indicator of online users (ie. does it delete a user’s session record within an hour or so of the user’s session end?)
number of records in session table = number of online users?
seeing if a user is online is just a lookup on the session table on user_id
Thanks