I want to use Chronicle Queues as inboxes for user messages, with each user of my application having his own queue. However, I'm facing the following "issues":
Since the number of messages per user is not that high, all messages for a single user could be stored in a single queue file without cycling. How can I disable cycling?
In case it is possible to disable cycling, can the whole queue be stored in a single file instead of a directory containing a single queue file plus the directory-listing.cq4t ?
On my Linux OS with EXT4 filesystem, an empty queue uses 83.9Mb of disk space. Can this be reduced to only take roughly the size of the content?
In case one or more of the given issues cannot be circumvented, is there another way to realize user inboxes with Chronicle Queues, like sub-queues or something else?