Say I have an app with multiple controllers .
UserController
EventsController
Does Rails create different sessions when I first request for User#show method and then go on to call Events#show method ?
Or is the same session created in the first instance valid even during the second call.