The file hypoha.xml contains multiple entities:
- HTML header
- menu item records
- user records
- page records (reference to another file)
- tag record
The update frequency of these entities varies:
- HTML header, tags and menu items are seeded data for a site and typically never changes.
- User records are reference data with maybe few changes per month.
- Page records are transaction data.
The XML files are used like a database. The locking mechanism is not yet clear to me.
To improve concurrency and other elements of ACID, what were the reasons to combine these into one file?
The file
hypoha.xmlcontains multiple entities:The update frequency of these entities varies:
The XML files are used like a database. The locking mechanism is not yet clear to me.
To improve concurrency and other elements of ACID, what were the reasons to combine these into one file?