vertx / io.vertx.reactivex.redis / RedisTransaction / lrem

lrem

open fun lrem(key: String, count: Long, value: String, handler: Handler<AsyncResult<String>>): RedisTransaction

Remove elements from a list

Parameters

key - Key string

count - Number of first found occurrences equal to $value to remove from the list

value - Value to be removed

handler - Handler for the result of this call.

Return