BB.Caching.Cache.Shared.Hashes.GetValues C# (CSharp) Method

GetValues() public static method

Returns all values in the hash stored at key.
http://redis.io/commands/hvals
public static GetValues ( RedisKey key ) : RedisValue[]
key RedisKey /// The key. ///
return RedisValue[]
                public static RedisValue[] GetValues(RedisKey key)
                {
                    RedisValue[] result = SharedCache.Instance.GetWriteConnection(key)
                        .GetDatabase(SharedCache.Instance.Db)
                        .HashValues(key);

                    return result;
                }

Same methods

Cache.Shared.Hashes::GetValues ( RedisKey key ) : Task