postgres-es

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

Build tag Crates.io

docs

Installation

toml [dependencies] postgres-es = "0.1.2" cqrs-es = "0.1.2"

Usage

``` use postgreses::{postgrescqrs, PostgresStore, Connection};

let connection = Connection::new("postgresql://demouser:demopass@localhost:5432/demo"); let cqrs = postgreses::postgrescqrs(connection, vec![Box::new(my_query)]) ```

Change log

v0.1.2

Require queries to also use Send & Sync.

v0.1.1

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

TODOs

Demo

A demo application is available here.