BB.Caching.Redis.Analytics.BitwiseAnalytics.Exists C# (CSharp) Method

Exists() public static method

Determines if the key exists.
public static Exists ( IDatabase database, RedisKey key ) : bool
database IDatabase /// The database where the query will be performed. This is passed so that we can reuse the same database to /// perform multiple bitwise operations. Doing this with the same connection will guarantee that performance /// is good. ///
key RedisKey /// The key. ///
return bool
        public static bool Exists(IDatabase database, RedisKey key)
        {
            return database.KeyExists(key);
        }

Same methods

BitwiseAnalytics::Exists ( RedisKey key ) : bool