faucet-state-postgres 1.0.1

PostgreSQL-backed StateStore for faucet-stream incremental replication
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # faucet-state-postgres
//!
//! PostgreSQL-backed [`StateStore`](faucet_core::state::StateStore) for
//! faucet-stream incremental replication bookmarks. Stores each entry in a
//! single `faucet_state(key TEXT PRIMARY KEY, value JSONB, updated_at TIMESTAMPTZ)`
//! table.

pub mod store;

pub use store::PostgresStateStore;