In this third part about the Zend Framework i am diving into the world of Zends implementation for sessions. Sessions are used to provide a way to save data between different page requests.
The Zend Framework has an easy way of managing sessions by creating a new instance of the Zend_Session_Namespace class. This class provides an easy to use API on the Zend_Session managed superglobal $_SESSION. By default the session data is saved to the filesystem which works perfect for simple applications using a single webserver but will be more problematic when multiple webservers are used all with their own filesystem.
A solution for this problem is saving the session data to a central database which is available to all webservers. The Zend Framework provides a class which can be used for this: Zend_Session_SaveHandler_DbTable which can be configured completely as a resource within the application.ini file.
Using the database as a central source for session data gives some other worries though:
- You have to make sure the database will be available at all time
- Clustering databases for high availability is something not all persons have knowledge on
- Managing the session tables within these databases poses some headaches when changes to the existing table are needed.
Another approach is using a memory based store like memcache, but in this post i would like to use the “new” kid in town called MongoDB, a scalable, high-performance, open source, document-oriented database. For this we are going to write a new session save handler for Zend Framework called GcLib_Zend_Session_SaveHandler_MongoDb. The source of this class can be downloaded here.
We start by creating the class GcLib_Zend_Session_SaveHandler_MongoDb implementing the interface Zend_Session_SaveHandler_Interface. This interface contains six methods we need to implement:
- open($save_path, $session_name): This method should open a connection to MongDB and return a boolean indicating its success. In our case we do not really need the parameters for save path and session so we ignore the values passed into the method.
- close(): This method should normally close the connection you opened in the open() method, but for convenience we just return true.
- read($id): This method has a parameter containing the session id. With this id we will find the session data in MongoDB. Beware, this function should alway return a literal, so never return NULL or false when no session data is returned from the database!
- write($id, $data): This method actually stores the session data in MongoDB. The id parameter contains the session id (which is the same as the value kept in the session cookie). The data parameter contains the serialized session data. These values are both stored in a MongoDB document together with a lifetime property containing the acces time. The method returns a boolean indicating its success.
- destroy($id): This method removes the session data and returns also a boolean indicating its success.
- gc($maxlifetime): This methods behaves as the garbage collector and removes sessions which are stale.
Note: For now the database and collection are hardcoded: db=”php”, collection=”sessions”
Zend configuration of the MongoDB save handler
resources.session.saveHandler.class = "GcLib_Zend_Session_SaveHandler_MongoDb"
resources.session.saveHandler.options.servers = "localhost:27017"
resources.session.saveHandler.options.persist = "x"
resources.session.saveHandler.options.replicaSet = "true"
