Jido.Messaging.Persistence.SQLite (Jido Messaging v1.1.0)

Copy Markdown View Source

Durable SQLite persistence adapter for Jido.Messaging.

This adapter stores canonical messaging records directly in SQLite. It is intentionally simple: each record is serialized as an Erlang term with a small set of indexed columns for common messaging lookups. It does not maintain an implicit ETS cache; applications that need caching can layer that separately.

Options

  • :path - SQLite database path. Defaults to "data/jido_messaging.sqlite3".

Summary

Types

t()

@type t() :: %Jido.Messaging.Persistence.SQLite{db: reference(), path: String.t()}