-
Notifications
You must be signed in to change notification settings - Fork 0
Records
Xiahua Liu edited this page Jan 27, 2025
·
2 revisions
In PawnDB, a record consists of a unique record key and a structured data tuple.
All records are static, meaning they have a fixed memory footprint and can be constantly constructed.
Record keys are unique within each table in PawnDB and must have the following traits:
- Eq
- Serializable
Record tuples contain the actual data payload of a record and must have the following trait:
- Serializable