You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DB db = DBMaker .fileDB("db/my_20240205.db") .fileMmapEnable() .closeOnJvmShutdown() .checksumHeaderBypass() .transactionEnable() .make();
When I execute db.commit() I get an alarm:
org.mapdb.volume.Volume deleteFile
warn: Could not delete file: db\my_20240205.db.wal.0
My environment information: Windows 10, the program started with the administrator user right.
My goal is to add, delete, and change multiple maps, commit a transaction, or roll back after any problems, all of which must succeed or fail.
What should I do?
The text was updated successfully, but these errors were encountered:
When I don't turn on the transaction, performance: 2us
After the transaction is enabled, it may also be the cause of the alarm, and the performance drops to tens of us. I have called db.commit() once every time I modified a batch of data, am I doing something wrong? I hope that the performance will be close to when it is not turned on after opening the transaction.
Here's my parameter configuration:
DB db = DBMaker .fileDB("db/my_20240205.db") .fileMmapEnable() .closeOnJvmShutdown() .checksumHeaderBypass() .transactionEnable() .make();
When I execute db.commit() I get an alarm:
org.mapdb.volume.Volume deleteFile
warn: Could not delete file: db\my_20240205.db.wal.0
My environment information: Windows 10, the program started with the administrator user right.
My goal is to add, delete, and change multiple maps, commit a transaction, or roll back after any problems, all of which must succeed or fail.
What should I do?
The text was updated successfully, but these errors were encountered: