-
-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Closed
Labels
Description
As per the discussion in #20288, I'd like to deprecate DbalSessionHandler for the following reasons:
- Why not just use
PdoSessionHandlerinstead asDbalSessionHandleris "slower"; - As everything is abstracted,
DbalSessionHandleris not more "convenient" thanPdoSessionHandler; DbalSessionHandleris more "complex" to configure thanPdoSessionHandleras you should ensure that it uses a different connection than the one used by the ORM;DbalSessionHandleris not really configurable easily in terms of column names (not that this is really something anyone should do) as there is a schema that helps creating the table (which is by the way the only "advantage" of this handler).
WDYT?