docs(matrix): rs Memcached + File backends shipped; refresh stale capability cells (LAB-429) - #36
Conversation
…ability cells (LAB-429) Cache Backends: rs Memcached/File flip to shipped (cargo features memcached/file, cachekit-rs PR #44), with a footnote covering the py-format byte compatibility, the deliberate rs v1 gaps (no eviction/ mmap; single-server memcached), and the CI container evidence. Also corrects three cells the current code disproves: - py File implements TTLInspectableBackend (get_ttl/refresh_ttl off the header) — the ❌ predated that landing; py Memcached ships refresh_ttl as a bare touch wrapper outside the protocol. - rs Redis implements LockableBackend (SET NX PX + Lua compare-and- delete, landed via LAB-426 with a live-redis CI job) — the ❌ and the 'TTL inspection only' note were stale. - Reliability rows (TTL management / distributed locking) updated to match. Co-authored-by: multica-agent <github@multica.ai>
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 12 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
…emediation (LAB-429) - rs Memcached cell: rust-memcache (async-memcached was dropped — it ships toxiproxy_rust/openssl as runtime deps). - TTL inspect/refresh cells now state the true shape for BOTH py and rs: the protocol can't read TTLs, and each SDK ships a bare refresh_ttl/touch wrapper outside the capability trait. Co-authored-by: multica-agent <github@multica.ai>
Co-authored-by: multica-agent <github@multica.ai>
Docs-gate companion to cachekit-io/cachekit-rs#44 (LAB-429).
--features memcached/--features file), plus footnote ³: py-format byte compatibility (verified by running the real py FileBackend against an rs-written directory and vice versa), deliberate rs v1 gaps (no LRU eviction/size caps/mmap; single-server memcached), CI memcached container job.TTLInspectableBackendtoday (get_ttl/refresh_ttlread/rewrite the on-disk header), and py Memcached shipsrefresh_ttlas a bare touch wrapper outside the protocol.LockableBackendfor Redis landed via LAB-426 (SET NX PX + Lua compare-and-delete, live-redis CI job); note paragraph updated to match..backend()in rs.