Memo::Namespaces
Registry of Memo::Service instances keyed by namespace (ns).
Each ns has its own database, embedding service, and USearch index — providing true isolation between projects sharing one memo-arcana process.
Namespaces can be opened explicitly via open or listed in a config
file for preloading at boot. Once opened, services are cached in
memory until explicitly closed (or the process exits).
Constructors
Instance methods
Get the Memo::Service for a namespace, opening it lazily if needed. Raises if the namespace isn't registered.
Load namespace configs from a YAML-ish config file.
Format (very simple, one block per namespace):
namespaces: - ns: wow db: postgres://wow:wow@localhost/wow_dev service: openai preload: true - ns: notes db: /var/lib/memo/notes.db service: mock
Register and immediately open a namespace. Returns the Service.