go-store/doc.go
Virgil 2bfb5af5e2
All checks were successful
Security Scan / security (push) Successful in 9s
Test / test (push) Successful in 1m35s
refactor(store): apply AX naming cleanup
Rename terse locals and callback internals, and update the user-facing examples to use explicit names.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-30 14:54:34 +00:00

10 lines
420 B
Go

// Package store provides a SQLite-backed key-value store with group namespaces,
// TTL expiry, quota-enforced scoped views, and reactive change notifications.
//
// st, _ := store.New(":memory:")
// value, _ := st.Get("config", "theme")
//
// Use New to open a store, then Set/Get for CRUD operations. Use
// NewScoped/NewScopedWithQuota when group names need tenant isolation or
// per-namespace quotas.
package store