select method

Future<void> select(
  1. int index
)

select

Implementation

Future<void> select(int index) async {
  return await _runWithRetryNew(() async {
    _socketOptions.db = index;
    (await RespCommandsTier1(_client!).select(index)).toSimpleString();
    return null;
  });
}