VSDB, Versioned Stateful DataBase, mainly used in blockchain scene.
Vecx
just like Vec
, but data will be automatically stored in disk instead of memoryMapx
just like BTreeMap
, but data will be automatically stored in disk instead of memoryBased on the underlying one-dimensional linear storage structure (native kv-database, such as sled/rocksdb, etc.), multiple different namespaces are divided, and then abstract each dimension in the multi-dimensional logical structure based on these divided namespaces.
In the category of kv-database, namespaces can be expressed as different key ranges, or different key prefix.
This is the same as expressing complex data structures in computer memory, you know, the memory itself is just a one-dimensional linear structure.
User data will be divided into two dimensions: 'branch' and 'version', the functions of the 'basic' category are stateless, and the functions of the 'versioned' category are stateful.
In the internal implementation, each stateful function is implemented based on its corresponding stateless function, all stateful data has two additional identification dimensions ('branch' and 'version'), somewhat like the logic in GIT.
Stateless functions do not have the feature of 'version' management, but they have higher performance.