GitHub top language GitHub issues GitHub pull requests

VSDB

VSDB, Versioned Stateful DataBase, mainly used in blockchain scene.

Support some GIT-like operations, such as:

All data is 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.