Categorygithub.com/learn-decentralized-systems/toylog
modulepackage
0.1.6
Repository: https://github.com/learn-decentralized-systems/toylog.git
Documentation: pkg.go.dev

# README

Toy chunked log

This is a very basic implementation of a chunked log. It creates a new chunk once the old one reaches the size limit. Once the chunk count limit is reached, old chunks expire.

A ChunkedLogReader can seek within the chunks and change chunks automatically providing a regular ReadSeeker API.

That's all the lib does.

# Constants

seek relative to the current offset.
seek relative to the end.
seek relative to the origin of the file.
No description provided by the author

# Variables

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Structs

Concurrent access guarantees: one writer, many readers.
No description provided by the author