Reputation: 21
@MarcGravell. I noticed that RedisClient (in ServiceStack.Redis) doesn't exists in StackExchange.Redis for Azure. Any plan to make it available? In particular, I'm using the RedisClient.AcquireLock for Distributed Lock. Note: I was able to connect to Redis instance in Azure with ServiceStack.Redis as well, but it would be nice that will be available in StackExchange.Redis.
Upvotes: 1
Views: 523
Reputation: 1063619
ServiceStack != StackExchange. They are entirely unrelated... However, SE.Redis does have methods for working with distributed locks - see the methods starting with the word Lock
on IDatabase
etc.
If there is some specific feature you are after: perhaps raise an issue on github. But: distributed / centralised locking is definitely provided. Specifically: Take, Release, Query and Extend.
Upvotes: 1