diff options
| author | 2026-03-30 18:06:05 +0000 | |
|---|---|---|
| committer | 2026-03-30 18:06:05 +0000 | |
| commit | c3fe7af6cf267e6fafe5ab24cd2cc238e3ba3029 (patch) | |
| tree | 41f241cb36f286b470e7db1164039aa76b4e6fd3 /object/store/dual/doc.go | |
| parent | ref/store: Remove ReadWriteStore (diff) | |
| signature | No signature | |
object/store/dual: Add a basic dual composr
Diffstat (limited to 'object/store/dual/doc.go')
| -rw-r--r-- | object/store/dual/doc.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/object/store/dual/doc.go b/object/store/dual/doc.go new file mode 100644 index 00000000..104120ec --- /dev/null +++ b/object/store/dual/doc.go @@ -0,0 +1,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 mixed reader over both. +// Coordinated quarantine operations span both stores, but quarantine promotion +// is non-atomic. +package dual |
