FriendsOfOuro / geteventstore-php-core

PHP Client for Event Store HTTP API

Home Page:http://friendsofouro.github.io/geteventstore-php-core/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build TCP Client

dgafka opened this issue · comments

Build on top of https://github.com/madkom/event-store-client TCP Client, which is much faster than standard HTTP one.

Example usage:
$esAsync = new EventStoreAsync('http://127.0.0.1:1113');
$esSync = new EventStoreSync('http://127.0.0.1:2113');

I'm not sure we can have a proper way to abstract the underlying protocol, @nicolopignatelli what do you think? However I'll have a look during christmas holydays

I will try to find some time in this week to check it out.