MultiChannel and MultiPTLC: Towards A Global High-Availability Database
delvingbitcoin.org·2h

Title: Towards a High-Availability CP Database For Bitcoin Payments

Introduction

The CAP Theorem is: You can have any two of these three:

  1. Consistency

  2. Availability

  3. Partition-Tolerance Now, because network is unreliable, what you actually can have are any one of these two:

  4. CP - Consistent and Partition-Tolerant

  5. AP - Available and Partition-Tolerant The Bitcoin blockchain is ultimately a database — the blockchain itself is a write-ahead log that is never reset, and transactions delete entries (UTXOs) and add new entries (updates are effectively an atomic deletion followed by an insertion, thus Bitcoin is actually a full ACID CRUD database).

The Bitcoin blockchain is an AP database. Due to the thousands of fullnodes (some of which even have hashpower) deployed …

Similar Posts

Loading similar posts...