blob: b9d8dfd8e792b873b174909bf517dff8ae0d10fe (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// Package dual provides one logical object store
// backed by separate object-wise and pack-wise stores.
//
// Dual composes a store that handles individual object writes
// with a store that handles pack-wise writes,
// while exposing one most-recently-used reader over both.
// Quarantines span the sides they cover.
package dual
|