suspend fun RedisClient.setrangeAwait(key: String, offset: Int, value: String): Long
Suspending version of method io.vertx.redis.RedisClient.setrange
offset
- Offset - the maximum offset that you can set is 2^29 -1 (536870911), as Redis Strings are limited to 512 megabytes
value
- Value to overwrite with
Return
NOTE: This function has been automatically generated from io.vertx.redis.RedisClient using Vert.x codegen.