select method

Future<void> select(
  1. int index
)

Selects the Redis logical database. Completes with no value, if the command was successful.

Implementation

Future<void> select(int index) async {
  _getSimpleString(await _execCmd(['SELECT', index])) == 'OK';
  return null;
}