Rails: how not to include some db attributes in a model
My DB table has a column that can hold a very large amount of data. I don't want this data to be part of the corresponding rails object (model).
How do I tell in the model that I don't want to keep this field in memory?
This is initially due to my session being larger than 4k and rails throwing an ActionController :: Session :: CookieStore :: CookieOverflow exception.
Thanks for your help, Mikael.
0
a source to share