In Rails its easy to store and retrieve session variables.
for e.g
session[:user_id] = @current_user.id
I was wondering if there is something this like in rhodes too.
Like in rails request parameters are accessible through
params['name']
while in rhodes its
@params['name']
If there is nothing like session variable, can anyone suggest some work around for managing sessions. like using global variables that are available across multiple requests.
Comments/Hints, please?
thanx.