Event Store Go Client
A Go port of the .Net client for Event Store.
License
Ported code is released under the MIT license.
Original code is released under the Event Store License.
Status
This project is considered ready for production.
Implemented
- Writing to a stream
- Reading a single event
- Reading a stream forwards
- Reading a stream backwards
- Reading all events forwards
- Reading all events backwards
- Volatile subscriptions
- Persistent subscription
- Deleting stream
- Cluster connection
- Global authentication
- Get/Set stream metadata
- Set system settings
- Transaction
Missing
- Projections Management
- 64bit event number support
Need Improvements
- Documentation
- Unit and integration tests
- Benchmarks
Known issues
- SSL connection are not working
Getting started
Requirements
Install
Install using go get github.com/jdextraze/go-gesclient
.
Running EventStore on local machine
See https://eventstore.org/docs/introduction/4.1.0/
Running EventStore with docker
docker run --rm --name eventstore -d -p 1113:1113 -p 2113:2113 eventstore/eventstore:release-4.1.0
or if you installed robo
robo start_es 4.1.0
Examples
For examples, look into the examples
folder.
Other languages client