Skip to content

Records

Xiahua Liu edited this page Jan 27, 2025 · 2 revisions

Records

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 Key

Record keys are unique within each table in PawnDB and must have the following traits:

  • Eq
  • Serializable

Record Tuple

Record tuples contain the actual data payload of a record and must have the following trait:

  • Serializable
Clone this wiki locally