Ferreteria/v0.5/node: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
m (6 revisions imported: moving this project here)
No edit summary
 
(One intermediate revision by the same user not shown)
Line 10: Line 10:
** {{l/ferreteria/code|data/node/cards.php}} - not yet used
** {{l/ferreteria/code|data/node/cards.php}} - not yet used
==Tables==
==Tables==
* {{l/version|sql|node}}: the only table
* {{l/ver/sql|node}}: the only table

Latest revision as of 21:18, 12 December 2022

versions: 0.41, 0.42, 0.5

About

The nodes subsystem stores arbitrary hierarchical data within a standard relational database.

The current proof-of-concept implementation stores all data using only one table, but this can easily be optimized for other purposes, split into multiple tables for different types of information (e.g. one table for event logs and another for user content), etc. The mechanics of how the data is stored are fully encapsulated within the class structure, so users of this system do not need to be aware of the implementation details.

Files

Tables

  • node: the only table