Rails Sessions : Is it possible?

Is it possible to prevent sessions from being created at all?

I put session :off in my ApplicationController and something similar
in my environment.rb

I restarted everything etc. And sessions are still being created. So I
switched from pstore to mysql. Restarted. Still being created although
now it’s a bit easier to watch over.

Is there someway to completely stop it?

add this

session :disabled => true

the top of the controller

adam