Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone explain me, how cookie based sessions with Renee work?

It should be kind of similar to Sinatra or other Rack based frameworks.

There is a reference page for Sessions, but it does not include any explanation.


Edit:

I have found a code sample on the projects GitHub site, but it does not seem to be the easiest way, to enable sessions.

Is there an easier way, other than given on the code sample?

share|improve this question
1  
I assume you have to enable sessions in some way (look up sinatra sessions) and then use sessions the rack way: session[:user] = "someone" where session can then be used across different requests. – three Jan 26 at 9:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.