Expand description
Organization configuration for shared memory graphs.
Provides configuration for org-scoped memory storage with support for
both SQLite (shared file) and PostgreSQL backends.
§Example TOML
[org]
name = "acme-corp"
backend = "sqlite"
sqlite_path = "/shared/org/acme-corp/index.db"
# OR for PostgreSQL:
# backend = "postgresql"
# postgres_url = "postgresql://user:pass@host:5432/subcog_org"
# postgres_max_connections = 10
# postgres_timeout_secs = 30Structs§
- Config
File Org - Organization configuration from config file.
- OrgConfig
- Runtime organization configuration.
Enums§
- OrgBackend
Config - Backend configuration for org-scoped storage.