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

Currently I am using enable :sessions for my sinatra webserver. But I need to move into a memory based session management

When I use Rack::Session::Pool, it runs although my session seems to expire on page reload, or even on a new Ajax Call being made.

share|improve this question

1 Answer

If you are using Passenger or one of the other webservers, it's because a new thread gets created. If you reload on your page quickly you'll probably get expired sessions with a new thread being created (it's in memory on a specific webserver thread)

If you reload your page slowly it shouldn't expire the session because your still on the same webserver thread.

share|improve this answer
Ah I see. The issue for me is that my app is highly ajaxed, hence I'll have calls running simultaneously. Is there a way, I can manage this ? – Prakash Raman Mar 3 '11 at 5:08
You can use Rack::Session:Cookie or Rack::Session:Memcache, I haven't tested those out yet fully (I'm having trouble implementing them for some reason) - or use a database table for the session store – Nick Mar 3 '11 at 5:31
Prakash, please go here to see my solution: stackoverflow.com/questions/5175854/… – Nick Mar 3 '11 at 5:45

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.