Crates.io | eventually-postgres |
lib.rs | eventually-postgres |
version | 0.2.0 |
source | src |
created_at | 2020-05-15 20:00:21.373675 |
updated_at | 2020-10-04 21:25:42.926088 |
description | Event Store implementation using PostgreSQL for the Eventually crate |
homepage | |
repository | https://github.com/ar3s3ru/eventually-rs |
max_upload_size | |
id | 242146 |
size | 49,105 |
Collection of traits and other utilities to help you build your Event-sourced applications in Rust.
Before diving into the crate's internals,you might be wondering what Event Sourcing is.
From eventstore.com introduction:
Event Sourcing is an architectural pattern that is gaining popularity as a method for building modern systems. Unlike traditional databases which only store and update the current state of data, event-sourced systems store all changes as an immutable series of events in the order that they occurred and current state is derived from that event log.
eventually
support Event Sourcing?eventually
exposes all the necessary abstraction to model your
Doman Entities (in lingo, Aggregates) using Domain Events, and
to save these Events using an Event Store (the append-only event log).
For more information, check out the crate documentation.
You can also take a look at eventually-app-example
,
showcasing an example event-sourced microservice using HTTP transport layer.
All other questions are more than welcome on our Gitter chat.
Add eventually
into your project dependencies:
[dependencies]
eventually = { version = "0.4.0", features = ["full"] }
This library is actively being developed, and prior to v1
release the following Semantic versioning
is being adopted:
MINOR
releasePATCH
releaseThis project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in eventually-rs
by you, shall be licensed as MIT, without any additional terms or conditions.