Decrements the value of an item in the cache.
@override Future<int> decrement(String key, [int value = 1]) async { return increment(key, -value); }