1: YES. And I strongly recommend storing PHP sessions in Memcached. Here's why:
Memcached was designed specifically for sessions. It was originally the brainchild of the lead developer of livejournal.com, and later used to also cache the content of users' posts. The benefit was immediate: most of the action was taking place in memory. Page load times greatly improved.
Thankfully, PHP and Apache have an easy implementation to handle sessions with Memcached. Simply install with a few shell commands and
change your php.ini settings to something similar to:
(taken from http://www.dotdeb.org/2008/08/25/storing-your-php-sessions-using-memcached/)
session.save_handler = memcache
; change server:port to fit your needs...
session.save_path="tcp://server:portersistent=1&weight=1&
timeout=1&retry_interval=15"
The key is the session.save_path
It will no longer point to a relative file path on your server.
Lastly, having a central server, or cluster of servers, to store sessions will enable you to scale horizontally, if you should need to. Memcached is great for storing small chunks of data that are frequently accessed by the database and filesystem. You can even have it distributed across your existing servers, but that is beyond the scope of the above solution.
APC was mentioned- APC for the caching of .php files used by the program. APC and Memcached will reduce IO signicantly and leave Apache free to serve resources,such as images, faster.
2: No
3: The fundamental disadvantage of using Memcached is data volatility
Session data is not persistent in Memcached. So if and when the server crashes, all data in memory is lost. Everyone will have to log in again.