Specific to Geth the database used is LevelDB. But what is the database used for parity?
Asked
Active
Viewed 1,862 times
2 Answers
13
I'm one of parity devs. We use Rocksdb. It's a key-value database developed by Facebook. We chose it mostly because of it's performance. In our benchmarks it was faster than LevelDB
From their webpage:
RocksDB is optimized for fast, low latency storage such as flash drives and high-speed disk drives. RocksDB exploits the full potential of high read/write rates offered by flash or RAM.
debris
- 861
- 7
- 12
-
1Would you still use that database today? – errata Mar 05 '19 at 05:32
-
1@errata They are working on new ParityDB, which should replace it, so you can guess ;) https://github.com/paritytech/parity-db – Tharok Jan 03 '22 at 20:28