EzDevInfo.com

redisson

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

Redisson - Queue capacity / documentation

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)

New to Redisson (Redis java client) type io.netty.util.concurrent.Future cannot be resolved

I have started to integrate Redission, redis java client to a sample java app. Now as soon as I extend Redisson, I get a error close to the package definition.

The type io.netty.util.concurrent.Future cannot be resolved. It is indirectly referenced from required .class files

What does this mean ?


Source: (StackOverflow)

Advertisements