Selects the Redis logical database. Completes with no value, if the command was successful.
Future<void> select(int index) async { _getSimpleString(await _execCmd(['SELECT', index])) == 'OK'; return null; }