Skip to content

Releases: Basis-Health/readb

Readme improvements

05 Sep 18:49
a2cc0dd
Compare
Choose a tag to compare
Merge pull request #10 from Basis-Health/master

0.4.1

Transactions & Breaking changes

05 Sep 18:32
3a2d6ef
Compare
Choose a tag to compare

BREAKING CHANGES in 0.4.0

  • 🛠 Refactored database code structure. You must now use use readb::Database;.
  • ✅ The constructor no longer needs unwrap(). An .unwrap() method remains for backward compatibility.
    • 🔁 Instead, we've introduced the create_path attribute in DatabaseSettings. This could be a breaking change if you aren’t using the Default.

New features

  • Transactions are now supported, although there use is discouraged for simple put/gets as the file is already batching inserts. They're encouraged for large batch inserts and for rollbacks