I’m trying to use sfPDOSessionStorage and it seems that it disables auto-start.
Question is when, where and how to start session it this case.
Also it issues
SELECT sess_data FROM sessions WHERE sess_id=?
and I do not understand why param is empty, and why this query is even there if auto-start is disabled and user is not logged in.
PS
Used http://grahamc.com/blog/how-to-setup-sfpdosessionstorage/ for reference.
All database session storage classes disable session auto-start and none of standard session classes gives you control over cookie. One has to write own session handling class to implement custom storage logic or benefit form cookie-based caching on web-server side.