summaryrefslogtreecommitdiff
path: root/src/indexedstore.rs
AgeCommit message (Collapse)AuthorFilesLines
2021-01-10feat! use SQLite db for chunk index on serverLars Wirzenius1-48/+16
This speeds startup a lot. However, the backup repository needs to be re-created from scratch and internal APIs have change in incompatible ways.
2021-01-03feat: load chunk metadata into index at startupLars Wirzenius1-3/+35
This needs to be replace with a database or something, but it'll do for now.
2020-12-23refactor: use a struct instead of a tupleLars Wirzenius1-4/+4
It seems this is more idiomatic in Rust.
2020-11-24refactor: add an abstraction for an indexed storeLars Wirzenius1-0/+57
This makes it easier to write a server without the HTTP layer.