Redisson - distributed and scalable Java data structures (BitSet, Set, ScoredSortedSet, SortedSet, Map, ConcurrentMap, List, Queue, BlockingQueue, Deque, Lock, AtomicLong, CountDownLatch, Publish / Subscribe, HyperLogLog, Redis pipelining) on top of Redis server. Based on own high-performance async and lock-free Java Redis client
Is there any decent documentation for redisson, or best practice?
I'm using .getBlockingQueue()
which allows for offer()
and put()
, but I have no idea what the capacity of the queue is. I'd like to set it to expand as needed, but without that I presume I probably need to have some persistence if I try to offer()
the item and the queue is full.
Since the documentation seems so sparse, I find it difficult to use with much confidence as to what to expect.
Source: (StackOverflow)