コード例 #1
0
        public dynamic Excute()
        {
            var setCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(setCollection.SREM(Key, Values));
        }
コード例 #2
0
        public dynamic Excute()
        {
            var listCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(listCollection.LPOP(Key));
        }
コード例 #3
0
        public dynamic Excute()
        {
            var listCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(listCollection.LRANGE(Key, Start, Stop).ToList());
        }
コード例 #4
0
        public dynamic Excute()
        {
            var listCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(listCollection.RPUSH(Key, Values));
        }
コード例 #5
0
        public dynamic Excute()
        {
            var setCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(setCollection.SINTER(Keys).ToList());
        }
コード例 #6
0
 public dynamic Excute()
 {
     return(DataLedisStore.GetDataStore().FlushDB());
 }
コード例 #7
0
 public dynamic Excute()
 {
     return(DataLedisStore.GetDataStore().Expire(Key, Second));
 }
コード例 #8
0
 public dynamic Excute()
 {
     return(DataLedisStore.GetDataStore().DelKey(Key));
 }
コード例 #9
0
        public dynamic Excute()
        {
            var stringCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(stringCollection.SET(Key, Value));
        }
コード例 #10
0
        public dynamic Excute()
        {
            var setCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(setCollection.SCARD(Key));
        }
コード例 #11
0
 public dynamic Excute()
 {
     return(DataLedisStore.GetDataStore().GetKeys(Pattern));
 }