Basic PHP Sessions
Tuesday June 27, 2006
A session is a way of storing variables for a user that can be used over many pages. Variable data is stored in an array, and each page can add or retrieve variables from the session array, as long as the session is opened at the beginning of the page.


Thank for the article
We have 5 apache servers serving content from NFS server… we use to write cache to this NFS, then we discovered memcached… we still write sessions to the same NFS, Is there a way to store sessions in RAM? so the 5 servers can access the same session info?
Thanks!