jankotek / mapdb

MapDB provides concurrent Maps, Sets and Queues backed by disk storage or off-heap-memory. It is a fast and easy to use embedded Java database engine.
https://mapdb.org
Apache License 2.0
4.87k stars 872 forks source link

Can't create a Queue #957

Open Chaiavi opened 4 years ago

Chaiavi commented 4 years ago

The secondary title of Mapdb states:

MapDB provides concurrent Maps, Sets and Queues...

But I can't find any way to create a queue

When I searched I found in the tests here a QueueMaker, but I can't use it in my code (maybe it doesn't exist in v3.XX ? )

I am using latest stable (v3.0.7)

How can I create a simple queue ?

unoexperto commented 4 years ago

@Chaiavi Looks like author no longer publishes artifact to Maven Central. I pushed today's master to https://bintray.com/cppexpert/maven/mapdb/snapshot-20191113

Chaiavi commented 4 years ago

Thanks @unoexperto I appreciate it.

unoexperto commented 4 years ago

@Chaiavi I created wrapper around Level DB to use it as storage for simple queue in case you need it https://gitlab.com/unoexperto/extensions-collections/

publisher to maven style repo to https://bintray.com/cppexpert/maven/extensions-collections/1.2

Chaiavi commented 4 years ago

Yes

This will definitely help

Thank you very much