CentralConcept / go-eventsourcing-pgx

a pgx eventstore implementation for https://github.com/hallgren/eventsourcing
2 stars 0 forks source link

Cool #1

Closed hallgren closed 2 weeks ago

hallgren commented 3 months ago

Hi @vonloh and thanks for creating this event store. it's very cool to see what you have created. :)

By creating this Postgres event store is there something in the sql event store that could be improved? I've mostly used it in together with sqlite.

I'm also curious if it's in some real world senario?

Would it be okey if I link to this repo in the https://github.com/hallgren/eventsourcing README?

BR Morgan

vonloh commented 2 months ago

hey @hallgren,

sure you can link. Some SQL statements in the SQL event store, such as AUTOINCREMENT, were not compatible with PostgreSQL. We experimented with the PostgreSQL store in a Kubernetes environment because we didn’t want to maintain any state within the pod itself.

BR Martin