T - type of objectpublic class RedissonBloomFilter<T> extends RedissonObject implements RBloomFilter<T>
codec, name| Modifier | Constructor and Description |
|---|---|
protected |
RedissonBloomFilter(Codec codec,
CommandExecutor commandExecutor,
String name) |
protected |
RedissonBloomFilter(CommandExecutor commandExecutor,
String name) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(T object)
Adds element
|
boolean |
clearExpire()
Clear an expire timeout or expire date for object.
|
RFuture<Boolean> |
clearExpireAsync()
Clear an expire timeout or expire date for object in async mode.
|
protected RFuture<Boolean> |
clearExpireAsync(String... keys) |
boolean |
contains(T object)
Check for element present
|
long |
count()
Calculates probabilistic number of elements already added to Bloom filter.
|
protected RBitSetAsync |
createBitSet(CommandBatchService executorService) |
RFuture<Boolean> |
deleteAsync()
Delete object in async mode
|
boolean |
expire(long timeToLive,
TimeUnit timeUnit)
Set a timeout for object.
|
RFuture<Boolean> |
expireAsync(long timeToLive,
TimeUnit timeUnit)
Set a timeout for object in async mode.
|
protected RFuture<Boolean> |
expireAsync(long timeToLive,
TimeUnit timeUnit,
String... keys) |
boolean |
expireAt(Date timestamp)
Set an expire date for object.
|
boolean |
expireAt(long timestamp)
Set an expire date for object.
|
RFuture<Boolean> |
expireAtAsync(Date timestamp)
Set an expire date for object in async mode.
|
RFuture<Boolean> |
expireAtAsync(long timestamp)
Set an expire date for object in async mode.
|
protected RFuture<Boolean> |
expireAtAsync(long timestamp,
String... keys) |
long |
getExpectedInsertions()
Returns expected amount of insertions per element.
|
double |
getFalseProbability()
Returns false probability of element presence.
|
int |
getHashIterations()
Returns hash iterations amount used per element.
|
protected long |
getMaxSize() |
long |
getSize()
Returns number of bits in Redis memory required by this instance
|
long |
remainTimeToLive()
Remaining time to live of Redisson object that has a timeout
|
RFuture<Long> |
remainTimeToLiveAsync()
Remaining time to live of Redisson object that has a timeout
|
RFuture<Void> |
renameAsync(String newName)
Rename current object key to
newName
in async mode |
RFuture<Boolean> |
renamenxAsync(String newName)
Rename current object key to
newName
in async mode only if new key is not exists |
RFuture<Long> |
sizeInMemoryAsync()
Returns bytes amount used by object in Redis memory.
|
boolean |
tryInit(long expectedInsertions,
double falseProbability)
Initializes Bloom filter params (size and hashIterations)
calculated from
expectedInsertions and falseProbability
Stores config to Redis server. |
addListener, addListener, addListenerAsync, addListenerAsync, copy, copyAsync, delete, deleteAsync, dump, dumpAsync, encode, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getIdleTime, getIdleTimeAsync, getLockByMapKey, getLockByValue, getName, getName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, prefixName, removeListener, removeListenerAsync, removeListenersAsync, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemory, sizeInMemoryAsync, sizeInMemoryAsync, suffixName, toSeconds, toStream, touch, touchAsync, unlink, unlinkAsyncclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclearExpire, expire, expireAt, expireAt, remainTimeToLiveaddListener, copy, delete, dump, getCodec, getIdleTime, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlinkexpireAtAsync, remainTimeToLiveAsyncaddListenerAsync, copyAsync, dumpAsync, getIdleTimeAsync, isExistsAsync, migrateAsync, moveAsync, removeListenerAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, touchAsync, unlinkAsyncprotected RedissonBloomFilter(CommandExecutor commandExecutor, String name)
protected RedissonBloomFilter(Codec codec, CommandExecutor commandExecutor, String name)
public boolean add(T object)
RBloomFilteradd in interface RBloomFilter<T>object - - element to addtrue if element has been added successfully
false if element is already presentpublic boolean contains(T object)
RBloomFiltercontains in interface RBloomFilter<T>object - - elementtrue if element is present
false if element is not presentprotected RBitSetAsync createBitSet(CommandBatchService executorService)
public long count()
RBloomFiltercount in interface RBloomFilter<T>public RFuture<Boolean> deleteAsync()
RObjectAsyncdeleteAsync in interface RObjectAsyncdeleteAsync in class RedissonObjecttrue if object was deleted false if notpublic RFuture<Long> sizeInMemoryAsync()
RObjectAsyncsizeInMemoryAsync in interface RObjectAsyncsizeInMemoryAsync in class RedissonObjectprotected long getMaxSize()
public boolean tryInit(long expectedInsertions,
double falseProbability)
RBloomFilterexpectedInsertions and falseProbability
Stores config to Redis server.tryInit in interface RBloomFilter<T>expectedInsertions - - expected amount of insertions per elementfalseProbability - - expected false probabilitytrue if Bloom filter initialized
false if Bloom filter already has been initializedpublic RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit)
RExpirableAsyncexpireAsync in interface RExpirableAsynctimeToLive - - timeout before object will be deletedtimeUnit - - timeout time unittrue if the timeout was set and false if notpublic RFuture<Boolean> expireAtAsync(long timestamp)
RExpirableAsyncexpireAtAsync in interface RExpirableAsynctimestamp - - expire date in milliseconds (Unix timestamp)true if the timeout was set and false if notpublic RFuture<Boolean> clearExpireAsync()
RExpirableAsyncclearExpireAsync in interface RExpirableAsynctrue if the timeout was cleared and false if notpublic long getExpectedInsertions()
RBloomFiltergetExpectedInsertions in interface RBloomFilter<T>public double getFalseProbability()
RBloomFiltergetFalseProbability in interface RBloomFilter<T>public long getSize()
RBloomFiltergetSize in interface RBloomFilter<T>public int getHashIterations()
RBloomFiltergetHashIterations in interface RBloomFilter<T>public RFuture<Void> renameAsync(String newName)
RObjectAsyncnewName
in async moderenameAsync in interface RObjectAsyncrenameAsync in class RedissonObjectnewName - - new name of objectpublic RFuture<Boolean> renamenxAsync(String newName)
RObjectAsyncnewName
in async mode only if new key is not existsrenamenxAsync in interface RObjectAsyncrenamenxAsync in class RedissonObjectnewName - - new name of objecttrue if object has been renamed successfully and false otherwisepublic boolean expire(long timeToLive,
TimeUnit timeUnit)
RExpirableexpire in interface RExpirabletimeToLive - - timeout before object will be deletedtimeUnit - - timeout time unittrue if the timeout was set and false if notpublic boolean expireAt(long timestamp)
RExpirableexpireAt in interface RExpirabletimestamp - - expire date in milliseconds (Unix timestamp)true if the timeout was set and false if notpublic boolean expireAt(Date timestamp)
RExpirableexpireAt in interface RExpirabletimestamp - - expire datetrue if the timeout was set and false if notpublic RFuture<Boolean> expireAtAsync(Date timestamp)
RExpirableAsyncexpireAtAsync in interface RExpirableAsynctimestamp - - expire datetrue if the timeout was set and false if notpublic boolean clearExpire()
RExpirableclearExpire in interface RExpirabletrue if timeout was removed
false if object does not exist or does not have an associated timeoutpublic long remainTimeToLive()
RExpirableremainTimeToLive in interface RExpirablepublic RFuture<Long> remainTimeToLiveAsync()
RExpirableAsyncremainTimeToLiveAsync in interface RExpirableAsyncprotected RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit, String... keys)
Copyright © 2014–2020 Redisson. All rights reserved.