forked from openhab/openhab-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mapdb] Fix "a" typo and use "-" for bullets in docs (openhab#13966)
Signed-off-by: Wouter Born <[email protected]>
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# MapDB Persistence | ||
|
||
The [MapDB](https://mapdb.org/) persistence service is based on simple key-value store that only saves the last value. | ||
The [MapDB](https://mapdb.org/) persistence service is based on a simple key-value store that only saves the last value. | ||
MapDB is useful for restoring items that have the `restoreOnStartup` strategy because other persistence options have some drawbacks if only the last value is needed on restarts. | ||
|
||
Some disadvantages of other persistence services compared to MapDB are that they: | ||
|
||
* grow in time | ||
* require complex installs (`influxdb`, `jdbc`, `jpa`) | ||
* `rrd4j` cannot store all item types (only numeric types) | ||
- grow in time | ||
- require complex installs (`influxdb`, `jdbc`, `jpa`) | ||
- `rrd4j` cannot store all item types (only numeric types) | ||
|
||
It is only possible to query the last value and not other historic values because the MapDB persistence service can only store one value per item. |