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

SetAsync() public static method

Sets the specified fields to their respective values in the hash stored at key. This command overwrites any existing fields in the hash. If key does not exist, a new key holding a hash is created.
http://redis.io/commands/hmset
public static SetAsync ( RedisKey key, HashEntry values ) : System.Threading.Tasks.Task
key RedisKey /// The key. ///
values HashEntry /// The values. ///
return System.Threading.Tasks.Task
                public static Task SetAsync(RedisKey key, HashEntry[] values)
                {
                    Task result = SharedCache.Instance.GetWriteConnection(key)
                        .GetDatabase(SharedCache.Instance.Db)
                        .HashSetAsync(key, values);

                    return result;
                }

Same methods

Cache.Shared.Hashes::SetAsync ( RedisKey key, RedisValue field, RedisValue value ) : Task