Future<RespType> flushDb({bool? doAsync}) async { return tier0.execute([ 'FLUSHDB', if (doAsync != null) doAsync ? 'ASYNC' : 'SYNC', ]); }