caos 0.0.6

Concurrent Append Only Segment-list
Documentation
1
2
3
4
5
6
7
# Concurrent Append Only Segment-list

This is a data structure that can be accessed from multiple threads without any locking while
 a single thread can append to it atomically whout locking.

Intended to be used for sharing list of indices, offsets of similar stuff between multiple readers
 while a writer can update the list atomically. This allows building an append only ACID datastore without compomising on performance.