aboutsummaryrefslogtreecommitdiff
path: root/object/store/dual/doc.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-30 18:06:05 +0000
committerGravatar Runxi Yu2026-03-30 18:06:05 +0000
commitc3fe7af6cf267e6fafe5ab24cd2cc238e3ba3029 (patch)
tree41f241cb36f286b470e7db1164039aa76b4e6fd3 /object/store/dual/doc.go
parentref/store: Remove ReadWriteStore (diff)
signatureNo signature
object/store/dual: Add a basic dual composr
Diffstat (limited to 'object/store/dual/doc.go')
-rw-r--r--object/store/dual/doc.go8
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