Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fogti/esvc
event streaming version control experiment
https://github.com/fogti/esvc
Last synced: 26 days ago
JSON representation
event streaming version control experiment
- Host: GitHub
- URL: https://github.com/fogti/esvc
- Owner: fogti
- Created: 2022-01-12T05:10:50.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-19T20:46:27.000Z (almost 3 years ago)
- Last Synced: 2024-03-15T12:11:53.806Z (10 months ago)
- Language: Nix
- Size: 398 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# event sourcing version control
This is the worst (performance-wise) version control software I can imagine.
Yes, afaik worse than commomly used blockchains and Darcs.
The primary functionality is "merging" parallel event branches,
and that is slow (O(n²) where n is the number of parallel branches).This also means that this can be only used on really small datasets,
and because of that, I made the library simpler by requiring that
the data set is completely present in memory while working on it
(as in: no file system access while modifying it).