RCache delete fixed

pull/337/head
Nikita 9 years ago
parent aa480757df
commit 5fda96c0ea

@ -351,4 +351,9 @@ public class RedissonCache<K, V> extends RedissonMap<K, V> implements RCache<K,
return h;
}
@Override
public Future<Boolean> deleteAsync() {
return commandExecutor.writeAsync(getName(), RedisCommands.DEL_SINGLE, getName(), getTimeoutSetName());
}
}

Loading…
Cancel
Save