Rosedb Versions Save

Lightweight, fast and reliable key/value storage engine based on Bitcask.

v2.3.6

1 month ago

🐞 Bug Fixes

  • Fix index lock

🎠 Community

  • Thanks to @Sora233
    • perf: improve batch performance #303

v2.3.5

2 months ago

🐞 Bug Fixes

v2.3.4

4 months ago

πŸŽ„ Enhancements

  • use wal write batch to optimize performance.
  • optimize memory usage.

🎠 Community

v2.3.3

8 months ago

πŸš€ New Features

  • add filterExpired for ascend/descend keys
  • Add persist function to remove the TTL of the key

v2.3.2

8 months ago

πŸš€ New Features

πŸŽ„ Enhancements

  • fix expire bug and add examples
  • add iterate examples

🎠 Community

🐞 Bug Fixes

  • fix reput ttl bug

v2.3.1

8 months ago

πŸš€ New Features

  • Support key expire
    • You can call PutWithTTL to set the expire time for a key.

🎠 Community

  • Thanks to @weijiew
    • Add more BTree functions #264

v2.3.0

8 months ago

πŸš€ New Features

  • use BTree as the default memory data structure.
    • the old Radix will be removed, and the iterator too.

🎠 Community

v2.2.2

9 months ago

πŸš€ New Features

πŸŽ„ Enhancements

🎠 Community

v2.2.1

10 months ago

🎠 Community

  • Thanks to @rfyiamcool for PR
    • feature: Add rollback function to discard all buffered data and release the lock(#217)
    • fix: clear db after benchmark (#224)

v2.2.0

10 months ago

πŸš€ New Features

  • Support Merge operation, to reclaim disk space.
    • Merge will rewrite all the valid data into new file, and delete the old files.
    • It maybe a very time-consuming operation, so it is recommended to use it when the database is idle.
  • Add tests in windows, with worlflow.