示例#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));
        }
        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));
        }
        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));
 }