2009/11/9 Heinz Strunk <[email protected]>: > > Well, most of it is actullay not any data that's going to be saved in > the database. I need to know various numbers like "current number of > users", "maximum number of users", "ids of the users" and stuff like > that. > > So I guess I should go for the session?
What do you mean by "current number of users"? Do you mean how many users are logged on? I got the impression in your original post that we were talking about data entered by the user. How do you know how many users are currently logged on? Remember that a session is on a user by user basis. If you want to remember data across users I think you will have to put it in the db. Colin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

