I want to set time-to-live on Hazelcast queue messages, i.e to evict eldest message in the queue after X amount of time. How do I configure the queue?
ps. I noticed the setEmptyQueueTtl method in the QueueConfig class, but that is not what I am looking for.
There's no TTL setting for the items in the queue, however sounds like you could also make use of Ringbuffers, which has a global ttl setting for items, have you checked that?