Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能向我解释 Symfony 2 中“会话”和“存储”之间的区别?
我正在使用 PdoSessionStorage ,但看不到以下任何关系:
...而且这两个类似乎都被实例化了!
一个代表会话,另一个代表会话的存储方式。PdoSessionStorage 将通过数据库上的 PDO 处理存储。这是一种将会话的实际概念和内容与其存储分离的方式,因为它可以以不同的方式存储。
为什么会引起你的关注?
会话处理似乎也被重构了,我认为你没有使用最新版本的 symfony。但无论如何,你不应该担心这些类。