2009/11/6 Heinz Strunk <[email protected]>: > > Marnen Laibow-Koser wrote: >> >> If it's only one request cycle, there's no real need to save temp data. >> What are you trying to do? >> > That's exactly my problem, otherwise I would be using variables. It's > many request cycles going back and forth that's why I need a proper way > to save some data. I'm doing it by passing parameters but it's confusing > and I don't like parameter when handling so many variables.
If you are only talking about a few hundred bytes or less then you can certainly save it in the session. The alternative is to use fields in something like the User table, assuming there is one. 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 -~----------~----~----~----~------~----~------~--~---

