Replace the remaining shorthand variable names in the implementation, examples, and supporting docs with explicit names. Co-Authored-By: Virgil <virgil@lethean.io>
10 lines
442 B
Go
10 lines
442 B
Go
// Package store provides a SQLite-backed key-value store with group namespaces,
|
|
// TTL expiry, quota-enforced scoped views, and reactive change notifications.
|
|
//
|
|
// storeInstance, _ := store.New(":memory:")
|
|
// 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
|