Releases: Basis-Health/readb
Releases · Basis-Health/readb
Readme improvements
Transactions & Breaking changes
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 inDatabaseSettings
. This could be a breaking change if you aren’t using theDefault
.
- 🔁 Instead, we've introduced the
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