aboutsummaryrefslogtreecommitdiff
path: root/internal/clock/doc.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-06-09 05:15:58 +0000
committerGravatar Runxi Yu2026-06-09 05:15:58 +0000
commit55676a35757bcbf2fa40cc3fd144ba412c65b658 (patch)
tree4c75c8497941d7b8c8c5530f5467bf42610c3f10 /internal/clock/doc.go
parentinternal/lru: Add sharded CLOCK (diff)
signatureNo signature
internal/cache: add (and move clock to internal/cache/clock)
Diffstat (limited to 'internal/clock/doc.go')
-rw-r--r--internal/clock/doc.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/internal/clock/doc.go b/internal/clock/doc.go
deleted file mode 100644
index 6f28805b..00000000
--- a/internal/clock/doc.go
+++ /dev/null
@@ -1,9 +0,0 @@
-// Package clock provides a concurrent, weight-bounded object cache.
-//
-// The cache is sharded by key,
-// and each shard owns an independent fraction of the total budget.
-// An entry heavier than that per-shard fraction is never admitted,
-// so callers should keep the total budget well above the largest value.
-//
-// Labels: MT-Safe.
-package clock