postgres-es 0.1.1

A Postgres implementation of an event store for cqrs-es.
Documentation

postgres-es

A Postgres implementation of the EventStore trait in cqrs-es.

Build tag Crates.io docs

Installation

[dependencies]
postgres-es = "0.1.1"
cqrs-es = "0.1.1"

Usage

use postgres_es::{postgres_cqrs, PostgresStore, Connection};

let connection = Connection::new("postgresql://demo_user:demo_pass@localhost:5432/demo");
let cqrs = postgres_es::postgres_cqrs(connection, vec![Box::new(my_query)])

Change log

v0.1.1

Use r2d2_postgres crate to support Send + Sync for multi-threaded applications.

TODOs

  • Add support for TLS.
  • Some additional framework around GenericQueryRepository to simplify event replay.

Demo

A demo application is available here.