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

Append() 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 Append ( RedisKey key, RedisValue value ) : long
key RedisKey /// The key. ///
value RedisValue /// The value. ///
return long
                public static long Append(RedisKey key, RedisValue value)
                {
                    long result = SharedCache.Instance.GetWriteConnection(key)
                        .GetDatabase(SharedCache.Instance.Db)
                        .StringAppend(key, value);

                    return result;
                }

Same methods

Cache.Shared.Strings::Append ( RedisKey key, byte value ) : long