From 23875a6ae351dac280fde98e1df3192884893546 Mon Sep 17 00:00:00 2001 From: Wouter Born Date: Fri, 16 Dec 2022 11:22:48 +0100 Subject: [PATCH] [mapdb] Fix "a" typo and use "-" for bullets in docs (#13966) Signed-off-by: Wouter Born --- bundles/org.openhab.persistence.mapdb/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bundles/org.openhab.persistence.mapdb/README.md b/bundles/org.openhab.persistence.mapdb/README.md index d1d972fcd1817..60d90cba157d3 100644 --- a/bundles/org.openhab.persistence.mapdb/README.md +++ b/bundles/org.openhab.persistence.mapdb/README.md @@ -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.