Get value of a key
await redis.get('foo');
Future<List<String?>> mget(List<String> keys) async { return await sendCommand(<String>['MGET', ..._setPrefixInKeys(keys)]); }