|
|
|
|
|
by derefr
2757 days ago
|
|
How about a thing that's almost-but-not-quite a blockchain? E.g. a decentralized multi-master Event Sourcing datastore. No proof-of-work, no mining, no ledger. Anyone who can connect to the network (i.e. is whitelisted) can append whatever they like, and it'll get replicated to everybody. But nobody can delete/overwrite (without losing consensus); and every event is signed by its emitter. It's just an append-only log file that happens to exist in several (geographically distant) places at once. Get the actors together to standardize a format for the messages everyone's emitting, and then make some software (one shared implementation, many different ones, doesn't matter) to parse the log stream into a point-in-time representation you can load into an analytics tool. Seems to me that that sort of technology would fit this use-case a lot more closely than an Actual Blockchain™ would. |
|
That's the idea. Just add a proof of causality for the transactions that span more than one peer, and you've got a blockchain.