Sui global storage is a map from object ID -> object, and we store objects in an off-the shelf key/value store.
15 Jan 2024, 02:54
Sui global storage is a map from object ID -> object, and we store objects in an off-the shelf key/value store. The current implementation uses RocksDB, but any key/value store would do.
Sui's plan to handle state growth is twofold:
1. Scale the key value/store. Sui never needs…