ctstone / csredis

.NET client for Redis and Redis Sentinel (2.8). Includes both synchronous and asynchronous clients.
Other
292 stars 111 forks source link

select with async-client? #13

Closed bonesoul closed 10 years ago

bonesoul commented 10 years ago

Is the async client missing db.select method?

ctstone commented 10 years ago

Yes, for some reason this was missing from the async class.

As it happens I have just pushed a major new release to nuget/github with this fix, among others. It's a major release with some breaking changes, so upgrade with care. Note though that async and sync methods now exist in a single class, RedisClient. RedisClientAsync no longer exists. Also, the base namespace has changed from 'ctstone.csredis' to 'CSRedis' so some manual updates will be needed after upgrading.

On Mon, Aug 4, 2014 at 7:35 AM, Hüseyin Uslu notifications@github.com wrote:

Is the async client missing db.select method?

— Reply to this email directly or view it on GitHub https://github.com/ctstone/csredis/issues/13.

bonesoul commented 10 years ago

Oh I guess this is the release candidate package then?

bonesoul commented 10 years ago

Ok I updated to new version and seems it's all working, thanks!