How can I get the current session id in rails 3?
I\'ve tried the following with no luck:
session[:session_id] session[\'session_id\'] session[:id] se
Have you tried the following?
request.session_options[:id]