Sync implementation of the cqrs-es2 store.
Provides sync interfaces to different database implementations for the CQRS system store.
The main components of this library are:
IEventDispatcher
- an interface for sync events listenersIEventStore
- an interface for sync event storesIQueryStore
- an interface for sync query storeswith-postgres
- sync Postgres storewith-mysql
- sync MySQL storewith-sqlite
- sync SQLite storewith-all-sql
- all SQL driverswith-mongodb
- sync MongoDB storewith-all-doc-db
- all doc DBs driverswith-redis
- sync Redis storewith-all-kv-db
- all key-value DBs driverswith-all-sync
- all sync drivers (default)To use this library in a sync application, add the following to
your dependency section in the project's Cargo.toml
:
```toml [dependencies]
log = { version = "^0.4", features = [ "maxleveldebug", "releasemaxlevel_warn", ] } fern = "^0.5"
serde = { version = "^1.0.127", features = ["derive"] } serde_json = "^1.0.66"
async-trait = "^0.1"
cqrs-es2 = { version = "*"}
cqrs-es2-store = { version = "*", default-features = false, features = [ "with-postgres", ] }
# postgres driver postgres = { version = "^0.19.1", features = ["with-serde_json-1"] } ```
Full sync store example applications are available here.
A complete history of the change log can be found here
An up-to-date list of development aspirations can be found here