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

mapdb storing List<Map<String, Object>> #974

Open itdeepdive opened 4 years ago

itdeepdive commented 4 years ago

List<Map<String, Object>> dataMap = read from the database table;

how do i stored the above datamap in mapdb.

The below one is not working. is this supported in mapdb ?.

List<Map<String, Object>> list = db.indexTreeList("dataMap ", Serializer.STRING).createOrOpen();

mpperez3 commented 4 years ago

Dear @itdeepdive could you solve this issue? Thanks in advance.