Skip to content

Commit

Permalink
add in memory persistence
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Herwege <[email protected]>
  • Loading branch information
mherwege committed Mar 7, 2024
1 parent 872fbcd commit 4e26225
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
"setupwizard.addon.persistence-rrd4j.line2": "It is recommended if you want to have charts of the historic state of numerical items.",
"setupwizard.addon.persistence-mapdb.line1": "Service that always stores the last state of an item. It allows restoring the state of all items when starting openHAB.",
"setupwizard.addon.persistence-mapdb.line2": "It is recommended if you want openHAB to always remember the last state before shutdown.",
"setupwizard.addon.persistence-inmemory.line1": "Service that keeps future values for time series, such as weather forecasts, in memory. The values will not survive a system restart.",
"setupwizard.addon.persistence-inmemory.line2": "It is recommended if you want to be able to graph or query future values.",
"setupwizard.persistence.footer": "Other advanced persistence services and configurations are possible and can be configured later.",
"setupwizard.persistence.install": "Install Selected Persistence Add-ons",
"setupwizard.persistence.installLater": "Install Persistence Add-ons Later",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export default {
autocompleteAddons: null,
addons: [],
// all recommended addons, pre-defined
recommendedAddons: ['persistence-rrd4j', 'persistence-mapdb', 'automation-jsscripting', 'ui-basic', 'binding-astro'],
recommendedAddons: ['persistence-rrd4j', 'persistence-mapdb', 'persistence-inmemory', 'automation-jsscripting', 'ui-basic', 'binding-astro'],
// addon types that can be selected in wizard before main addon selection step, to be excluded from main selection step, pre-defined
preSelectingAddonTypes: ['persistence'],
// addons that can be selected in wizard before main addon selection step, to be excluded from main selection step, pre-defined
Expand Down

0 comments on commit 4e26225

Please sign in to comment.