Module org

Module org 

Source
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 = 30

Structs§

ConfigFileOrg
Organization configuration from config file.
OrgConfig
Runtime organization configuration.

Enums§

OrgBackendConfig
Backend configuration for org-scoped storage.