We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e637770 commit df11b2cCopy full SHA for df11b2c
objectbox/CHANGELOG.md
@@ -40,6 +40,13 @@
40
int get computedValue => TODO;
41
set computedValue(int value) => TODO;
42
```
43
+* Use a file-less in-memory database, for example for testing, by setting `inMemoryIdentifier` when
44
+ creating a `Store` instead of a `directory`. See the `Store` documentation for details.
45
+ ```dart
46
+ final inMemoryStore =
47
+ Store(getObjectBoxModel(), inMemoryIdentifier: "test-db");
48
+ ```
49
+* Add `Store.removeDbFiles()` to conveniently delete database files or an in-memory database.
50
51
## 2.4.0 (2023-12-13)
52
0 commit comments