JDBM3 icon indicating copy to clipboard operation
JDBM3 copied to clipboard

Embedded Key Value Java Database

Results 13 JDBM3 issues
Sort by recently updated
recently updated
newest added

Bumps [junit](https://github.com/junit-team/junit4) from 4.8.2 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

With JDK11 initialization works, but there seems to be no proper way to close the database. It breaks with an exception: Exception in thread "AWT-EventQueue-0" java.lang.NoSuchMethodError: sun.nio.ch.DirectBuffer.cleaner()Lsun/misc/Cleaner; at org.apache.jdbm.StorageDiskMapped.unmapBuffer(StorageDiskMapped.java:125). JDK9...

Hey Jan, I needed to retrieve your project as a dependency in one our projects using apache maven. I just saw in the README that you would like to publish...

Hi Jan, This is a change from a user who follows my clone of JDBM. I think it looks like a good change; you might want to consider merging it...

I am trying to use jdbm to store/delete temp objects. When the number of objects increased, I noticed that the d.0 file size has grown. So, i used the defrag...

We're using JDBM with a large number (15k+) of distinct DBs (each with a single TreeMap instance) and while overall they're working well, we're getting what appears to be intermittent...

I store LinkedList values with String keys and sadly, more or less by accident, I recognized that jdbm loses a single entry from a LinkedList that I stored. I tried...

Steps 1. Create hash map using DBMaker 2. Put any serialized object into hash map 3. Call commit on DB. Error: Caused by: java.io.NotSerializableException: sun.nio.ch.FileChannelImpl at org.apache.jdbm.SerialClassInfo.assertClassSerializable(SerialClassInfo.java:327) Can you please...

Consider the following unit test: import java.util.List; import org.apache.jdbm.DB; import org.apache.jdbm.DBMaker; import org.junit.Test; public class JDBMTester { ``` @Test public void testAddValueToHead() { DB db = DBMaker.openFile("tmp2").make(); List list =...

I have a program that uses the original JDBM and I am trying to port it to JDBM3. My use case is to use String as a key and either...