BB.Caching.Cache.Shared.Keys.DebugObjectAsync C# (CSharp) Méthode

DebugObjectAsync() public static méthode

Returns the raw DEBUG OBJECT output for a key; this command is not fully documented and should be avoided unless you have good reason, and then avoided anyway.
http://redis.io/commands/debug-object
public static DebugObjectAsync ( string key ) : Task
key string /// The key. ///
Résultat Task
                public static Task<RedisValue> DebugObjectAsync(string key)
                {
                    return SharedCache.Instance.GetReadConnection(key)
                        .GetDatabase(SharedCache.Instance.Db)
                        .DebugObjectAsync(key);
                }
            }