Happy !

MasashiUmezawa / RediStick

Project infos

License MIT
Tags redis, stick
Creation date 2016-06-26
Website

Monticello registration

About RediStick

A Redis client using Stick.

Many parts are borrowed from RedisClient.

However RediStick use Stick for supporting auto reconnection.

stick := RsRediStick targetUrl: 'sync://localhost'.
stick connect.
stick beSticky. "Auto reconnect when server is not accessible"
stick onError: [ :e | e pass ].
stick endpoint info.
stick endpoint get: 'a'.
stick endpoint set: 'a' value: 999.