Delete a key
Future<int> delete(String key) async { final result = await _client.send_object(['DEL', key]); return result as int; }