surrealpatch/lib/src/key/mod.rs

57 lines
2.3 KiB
Rust
Raw Normal View History

/// KV /
2022-03-20 14:27:56 +00:00
/// NS /!ns{ns}
///
2022-03-20 14:27:56 +00:00
/// Namespace /*{ns}
/// NL /*{ns}!nl{us}
/// NT /*{ns}!nt{tk}
/// DB /*{ns}!db{db}
///
2022-03-20 14:27:56 +00:00
/// Database /*{ns}*{db}
/// DL /*{ns}*{db}!dl{us}
/// DT /*{ns}*{db}!dt{tk}
/// SC /*{ns}*{db}!sc{sc}
/// PA /*{ns}*{db}!pa{pa}
2022-03-20 14:27:56 +00:00
/// TB /*{ns}*{db}!tb{tb}
2022-06-27 16:01:39 +00:00
/// LQ /*{ns}*{db}!lq{lq}
///
/// Scope /*{ns}*{db}±{sc}
/// ST /*{ns}*{db}±{sc}!st{tk}
///
2022-03-20 14:27:56 +00:00
/// Table /*{ns}*{db}*{tb}
/// FT /*{ns}*{db}*{tb}!ft{ft}
/// FD /*{ns}*{db}*{tb}!fd{fd}
/// EV /*{ns}*{db}*{tb}!ev{ev}
/// IX /*{ns}*{db}*{tb}!ix{ix}
/// LV /*{ns}*{db}*{tb}!lv{lv}
///
2022-03-20 14:27:56 +00:00
/// Thing /*{ns}*{db}*{tb}*{id}
///
2022-06-15 07:41:23 +00:00
/// Graph /*{ns}*{db}*{tb}~{id}{eg}{fk}
2022-03-20 14:27:56 +00:00
///
2022-06-15 07:41:23 +00:00
/// Index /*{ns}*{db}*{tb}¤{ix}{fd}{id}
///
pub mod database; // Stores the key prefix for all keys under a database
pub mod db; // Stores a DEFINE DATABASE config definition
pub mod dl; // Stores a DEFINE LOGIN ON DATABASE config definition
pub mod dt; // Stores a DEFINE LOGIN ON DATABASE config definition
pub mod ev; // Stores a DEFINE EVENT config definition
pub mod fd; // Stores a DEFINE FIELD config definition
pub mod ft; // Stores a DEFINE TABLE AS config definition
pub mod graph; // Stores a graph edge pointer
pub mod index; // Stores an index entry
pub mod ix; // Stores a DEFINE INDEX config definition
pub mod kv; // Stores the key prefix for all keys
pub mod lq; // Stores a LIVE SELECT query definition on the database
pub mod lv; // Stores a LIVE SELECT query definition on the table
pub mod namespace; // Stores the key prefix for all keys under a namespace
pub mod nl; // Stores a DEFINE LOGIN ON NAMESPACE config definition
pub mod ns; // Stores a DEFINE NAMESPACE config definition
pub mod nt; // Stores a DEFINE TOKEN ON NAMESPACE config definition
pub mod pa; // Stores a DEFINE PARAM config definition
pub mod sc; // Stores a DEFINE SCOPE config definition
pub mod scope; // Stores the key prefix for all keys under a scope
pub mod st; // Stores a DEFINE TOKEN ON SCOPE config definition
pub mod table; // Stores the key prefix for all keys under a table
pub mod tb; // Stores a DEFINE TABLE config definition
pub mod thing; // Stores a record id