Edgewall Software

Changes between Version 1 and Version 2 of TracDev/TracSession


Ignore:
Timestamp:
Aug 3, 2014, 7:14:16 AM (10 years ago)
Author:
Ryan J Ollos
Comment:

Use consistent markup to refer to tables.

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/TracSession

    v1 v2  
    2323== Session storage in the Database ==
    2424
    25 The per-session data is stored in the database. Specifically in the ''session'' and the ''session_attribute''  [wiki:TracDev/DatabaseSchema tables]. (The session key / cookie identifies the relevant entries in these tables.)
     25The per-session data is stored in the database. Specifically in the `session` and the `session_attribute`  [wiki:TracDev/DatabaseSchema tables]. (The session key / cookie identifies the relevant entries in these tables.)
    2626
    27 Note: as we often manipulate both the ''session'' and the ''session_attribute'' tables, there's a possibility of table deadlocks (#9705). We try to prevent them to happen by always accessing the tables in the same order within the transaction, first `session`, then `session_attribute`.
     27Note: as we often manipulate both the `session` and the `session_attribute` tables, there's a possibility of table deadlocks (#9705). We try to prevent them to happen by always accessing the tables in the same order within the transaction, first `session`, then `session_attribute`.
    2828
    2929== Session cookie ==