Bitcoin Forum

Bitcoin => Development & Technical Discussion => Topic started by: zororaka on June 30, 2020, 12:13:26 AM



Title: [SHARE] Project Simply Blockchain Data With ArangoDB
Post by: zororaka on June 30, 2020, 12:13:26 AM
I made this as my study material on the concept of blockchain with a database application (semi-decentralized). I didn't know this would be useful for those who needed it or not, but here I am just sharing. may be useful ;D ;D

Link: https://github.com/RakaWA/simple-concept-blockchain-data (https://github.com/RakaWA/simple-concept-blockchain-data)


Title: Re: [SHARE] Project Simply Blockchain Data With ArangoDB
Post by: NotATether on June 30, 2020, 06:39:28 PM
Making a sample implementation of a blockchain using databases is a good start, it lets you experiment with implementing protocols without having to set up so many nodes, since you can create a checkpoint in the database for testing that has the state of a blockchain at a known point.

And it should be done with a NoSQL database, because SQL is too relational to adapt to storing arbitrary data, which necessitates using some database that behaves more like a key-value store.