BB.Caching.Cache.Shared.Strings.AppendAsync C# (CSharp) Method

AppendAsync() public static method

If key already exists and is a string, this command appends the value at the end of the string. If key does not exist it is created and set as an empty string, so APPEND will be similar to SET in this special case.
http://redis.io/commands/append
public static AppendAsync ( RedisKey key, RedisValue value ) : Task
key RedisKey /// The key. ///
value RedisValue /// The value. ///
return Task
                public static Task<long> AppendAsync(RedisKey key, RedisValue value)
                {
                    Task<long> result = SharedCache.Instance.GetWriteConnection(key)
                        .GetDatabase(SharedCache.Instance.Db)
                        .StringAppendAsync(key, value);

                    return result;
                }

Same methods

Cache.Shared.Strings::AppendAsync ( RedisKey key, byte value ) : Task