Happy !
MasashiUmezawa / RediStick
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.
