Removes the value for the given keys. Returns the number of deleted values.
keys
Future<int> del(List<String> keys) async { return _getInteger(await _execCmd(['DEL', ...keys])); }