Esempio n. 1
0
        public dynamic Excute()
        {
            var setCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(setCollection.SREM(Key, Values));
        }
Esempio n. 2
0
        public dynamic Excute()
        {
            var listCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(listCollection.LPOP(Key));
        }
Esempio n. 3
0
        public dynamic Excute()
        {
            var listCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(listCollection.LRANGE(Key, Start, Stop).ToList());
        }
Esempio n. 4
0
        public dynamic Excute()
        {
            var listCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(listCollection.RPUSH(Key, Values));
        }
Esempio n. 5
0
        public dynamic Excute()
        {
            var setCollection = DataLedisStore.GetDataStore().LedisCollection;

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

            return(stringCollection.SET(Key, Value));
        }
Esempio n. 10
0
        public dynamic Excute()
        {
            var setCollection = DataLedisStore.GetDataStore().LedisCollection;

            return(setCollection.SCARD(Key));
        }
Esempio n. 11
0
 public dynamic Excute()
 {
     return(DataLedisStore.GetDataStore().GetKeys(Pattern));
 }