digitalpoint
Well-known member
I'm curious if there is a reason that the session.admin.storage container is limited to database only? Working on temporarily storing a bit of data that should stay completely out of the database (for security reasons). It's for use in the admin control panel on a per admin basis. The admin session seemed like a good mechanism to store that bit of data... until I realized the admin session is always stored in the database.
It seems simple enough for me to change the session.admin.storage container to use
It seems simple enough for me to change the session.admin.storage container to use
\XF\Session\CacheStorage
, but just curious if there's an underlying reason for it always being in the database (not trying to break unforeseen things).