It's my understanding that, by default, PHP will create temporary files to store session data. You can change this default behavior to use a database using something like [man]session_set_save_handler[/man] but I don't really see any way to avoid disk activity and just store it in RAM instead. Is this possible?