Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 847 Bytes

File metadata and controls

44 lines (30 loc) · 847 Bytes

Postgres EventStore

Postgres implementation of an Event Store

Requires Postgres 9.5 or above because:

  • Uses JSONB columns
  • Uses ON CONFLICT

Also compatible with TimescaleDB 0.8 or above.

Installation

Add in your pom.xml file the jitpack.io repositories:

<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>

Now add the package as a dependency:

<dependencies>		
  <dependency>
    <groupId>com.github.com-nilportugues</groupId>
    <artifactId>eventstore-postgres</artifactId>
    <version>${eventstore-postgres.version}</version>
  </dependency>
</dependencies>  

Authors

License

The code base is licensed under the MIT license.