v0.2.0
-
Re-organize the whole API into dedicated
Parser(protocol reader) andSerializer(protocol writer) sub-namespaces. (#4)
-
Use of the factory has now been unified:
$factory = new Clue\Redis\Protocol\Factory(); $parser = $factory->createParser(); $serializer = $factory->createSerializer();
-
Add a dedicated
Modelfor each type of reply. Among others, this now allows
you to distinguish a single lineStatusReplyfrom a binary-safeBulkReply. (#2) -
Fix parsing binary values and do not trip over trailing/leading whitespace. (#4)
-
Improve parser and serializer performance by up to 20%. (#4)