mp911de
09/29/2020, 1:55 PM// variant 1: suspendable
val api: RedisClusterSuspendableCommands<String, String> = connection.suspendable()
// variant 2: coroutine
val api: RedisClusterCoroutineCommands<String, String> = connection.coroutine()
taer
09/29/2020, 3:12 PM