Post
Topic
Board Development & Technical Discussion
Merits 2 from 1 user
Re: Is there any research on different key-value DBs suitable for bitcoin?
by
Coding Enthusiast
on 26/12/2020, 15:35:54 UTC
⭐ Merited by ETFbitcoin (2)
But obviously it's not efficient since it's written on pure Python and JSON doesn't scale well.
The lack of efficiency is not about the language, it is because the entire file is read and written each time instead of partial read/writes which can't really scale. It woks well for small sizes which is why there is only a handful of complaints so far.
But you are right JSON itself doesn't scale well.