go-store/doc.go
Virgil adc463ba75
All checks were successful
Security Scan / security (push) Successful in 9s
Test / test (push) Successful in 1m36s
docs(ax): add Codex conventions bridge
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-30 15:16:16 +00:00

14 lines
577 B
Go

// Package store provides a SQLite-backed key-value store with group namespaces,
// TTL expiry, quota-enforced scoped views, and reactive change notifications.
//
// Usage example:
//
// storeInstance, _ := store.New(":memory:")
// scopedStore, _ := store.NewScoped(storeInstance, "tenant-a")
// _ = scopedStore.Set("config", "theme", "dark")
// value, _ := storeInstance.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