Determines if an item exists in the cache.
@override Future<bool> has(String key) async { final cmd = await _getCommand(); final result = await cmd.send_object(['EXISTS', key]); return result == 1; }