[Rails] Re: session[:foo] size limit?

2010-04-23 Thread Frederick Cheung
On Apr 23, 4:34 pm, Hans Hartmann wrote: > > With a rails app generated by a recent version of rails you'll have an > > initializer called something like session.rb or session_store.rb in > > config/initializers that sets up the session > > I've got a rails app generated by a recent version of r

[Rails] Re: session[:foo] size limit?

2010-04-23 Thread Hans Hartmann
> With a rails app generated by a recent version of rails you'll have an > initializer called something like session.rb or session_store.rb in > config/initializers that sets up the session I've got a rails app generated by a recent version of rails but no initializer caller session.rb ... not ev

[Rails] Re: session[:foo] size limit?

2010-04-23 Thread Frederick Cheung
On Apr 23, 4:00 pm, Hans Hartmann wrote: > Do you mean something like storing the entries temporarly in a database > with action:create and delete them when not needed anymore? > ... I think thats pretty much confusing to store. > > Isn't there a possability to many strings/arrays (checkbox_valu

[Rails] Re: session[:foo] size limit?

2010-04-23 Thread Hans Hartmann
Do you mean something like storing the entries temporarly in a database with action:create and delete them when not needed anymore? ... I think thats pretty much confusing to store. Isn't there a possability to many strings/arrays (checkbox_values) in a variable? How can I change the session sto

[Rails] Re: session[:foo] size limit?

2010-04-23 Thread Frederick Cheung
On Apr 23, 3:12 pm, Hans Hartmann wrote: > Hi there, > > i want to store an array of filenames in a session-variable > (session[:foo). > The problem is: if it reaches a current number of entries the > application breaks. > > Is there a storage-limit of session-variables? > Is it possible to exte