public dynamic Excute() { var setCollection = DataLedisStore.GetDataStore().LedisCollection; return(setCollection.SREM(Key, Values)); }
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()); }
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()); }
public dynamic Excute() { return(DataLedisStore.GetDataStore().FlushDB()); }
public dynamic Excute() { return(DataLedisStore.GetDataStore().Expire(Key, Second)); }
public dynamic Excute() { return(DataLedisStore.GetDataStore().DelKey(Key)); }
public dynamic Excute() { var stringCollection = DataLedisStore.GetDataStore().LedisCollection; return(stringCollection.SET(Key, Value)); }
public dynamic Excute() { var setCollection = DataLedisStore.GetDataStore().LedisCollection; return(setCollection.SCARD(Key)); }
public dynamic Excute() { return(DataLedisStore.GetDataStore().GetKeys(Pattern)); }