Zend_Session simply provides a means to interact with PHP sessions, without having to use the $_SESSION global variable. The info is still stored the same way that PHP always stores session info.
If you are doing authentication/authorization on the site then it is generally considered less than ideal to be storing session_id's in a DB, from what I've read.
|