Uses of Class
io.quarkus.redis.datasource.bloom.BfInsertArgs
-
Packages that use BfInsertArgs Package Description io.quarkus.redis.datasource.bloom io.quarkus.redis.runtime.datasource -
-
Uses of BfInsertArgs in io.quarkus.redis.datasource.bloom
Methods in io.quarkus.redis.datasource.bloom that return BfInsertArgs Modifier and Type Method Description BfInsertArgsBfInsertArgs. capacity(long capacity)Specifies the desired capacity for the filter to be created.BfInsertArgsBfInsertArgs. errorRate(double errorRate)Specifies the error ratio of the newly created filter if it does not yet exist.BfInsertArgsBfInsertArgs. expansion(int expansion)Set the expansion factory.BfInsertArgsBfInsertArgs. nocreate()Indicates that the filter should not be created if it does not already exist.BfInsertArgsBfInsertArgs. nonScaling()Prevents the filter from creating additional sub-filters if initial capacity is reached.Methods in io.quarkus.redis.datasource.bloom with parameters of type BfInsertArgs Modifier and Type Method Description List<Boolean>BloomCommands. bfinsert(K key, BfInsertArgs args, V... values)Execute the command BF.INSERT.io.smallrye.mutiny.Uni<List<Boolean>>ReactiveBloomCommands. bfinsert(K key, BfInsertArgs args, V... values)Execute the command BF.INSERT.io.smallrye.mutiny.Uni<Void>ReactiveTransactionalBloomCommands. bfinsert(K key, BfInsertArgs args, V... values)Execute the command BF.INSERT.voidTransactionalBloomCommands. bfinsert(K key, BfInsertArgs args, V... values)Execute the command BF.INSERT. -
Uses of BfInsertArgs in io.quarkus.redis.runtime.datasource
Methods in io.quarkus.redis.runtime.datasource with parameters of type BfInsertArgs Modifier and Type Method Description (package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>AbstractBloomCommands. _bfinsert(K key, BfInsertArgs args, V... values)List<Boolean>BlockingBloomCommandsImpl. bfinsert(K key, BfInsertArgs args, V... values)voidBlockingTransactionalBloomCommandsImpl. bfinsert(K key, BfInsertArgs args, V... values)io.smallrye.mutiny.Uni<List<Boolean>>ReactiveBloomCommandsImpl. bfinsert(K key, BfInsertArgs args, V... values)io.smallrye.mutiny.Uni<Void>ReactiveTransactionalBloomCommandsImpl. bfinsert(K key, BfInsertArgs args, V... values)
-