2016-12-10 23:14:12 +00:00
---
layout: documentation
2017-09-24 14:37:53 +00:00
title: Persistence Services
2016-12-10 23:14:12 +00:00
---
2017-09-24 14:37:53 +00:00
# Persistence Services
2016-12-10 23:14:12 +00:00
2017-02-04 19:26:08 +00:00
Persistence services enable the storage of item states over time.
2016-12-10 23:14:12 +00:00
2017-02-04 19:26:08 +00:00
< table id = "persistence-select" class = "striped" >
< tbody >
< tr >
< td width = "20%" >
< p >
< input type = "checkbox" class = "filled-in" id = "manual-checkbox" / >
< label for = "manual-checkbox" > < img src = "{{base}}/images/tag-install-manual.svg" > < / label >
< / p >
< / td >
< td >
< p >
Some openHAB 1 persistence services have not yet completed validation for inclusion in the distribution; however, they may indeed work properly under openHAB 2.
2021-01-10 12:50:59 +00:00
All openHAB 1 add-ons can be downloaded in a < a href = "https://bintray.com/openhab/mvn/download_file?file_path=org%2Fopenhab%2Fdistro%2Fopenhab%2F1.9.0%2Fopenhab-1.9.0-addons.zip" > zip file< / a > .
2017-02-04 19:26:08 +00:00
We need your help testing them so that they may be easily installed in a future distribution.
2017-02-14 11:37:02 +00:00
Please see the < a href = "{{base}}/developers/development/compatibilitylayer.html#how-to-use-openhab-1x-add-ons-that-are-not-part-of-the-distribution" > compatibility layer documentation< / a > and
2017-02-04 19:26:08 +00:00
also search the < a href = "https://community.openhab.org" > openHAB community forum< / a > for the latest information and steps for manual installation.
< / p >
< / td >
< / tr >
< / tbody >
< / table >
2016-12-10 23:14:12 +00:00
2017-02-06 07:22:42 +00:00
< table id = "persistence-overview" class = "bordered addon-table" >
2017-02-04 19:26:08 +00:00
< thead >
< tr >
< th data-field = "label" width = "20%" > Name< / th >
< th data-field = "description" > Description< / th >
< / tr >
< / thead >
< tbody >
2017-09-24 14:37:53 +00:00
{% for persistence in site.addons_persistences %}
2017-03-02 00:08:44 +00:00
< tr class = "install-{{persistence.install}} since-{{persistence.since}}" >
2017-02-04 19:26:08 +00:00
< td >
2017-11-11 14:25:32 +00:00
< h4 > < a href = "{{base}}{{persistence.url}}" > {% if persistence.logo %}< img class = "logo" src = "{{base}}/{{persistence.logo}}" title = "{{ persistence.label }}" alt = "{{ persistence.label }}" / > {% else %}{{ persistence.label }}{% endif %}< / a > < / h4 >
2017-03-02 00:08:44 +00:00
< img src = "{{base}}/images/tag-since-{{persistence.since}}.svg" > < img src = "{{base}}/images/tag-install-{{persistence.install}}.svg" >
2017-02-04 19:26:08 +00:00
< / td >
2017-03-02 00:08:44 +00:00
< td > {{ persistence.description | markdownify }}< / td >
2017-02-04 19:26:08 +00:00
< / tr >
{% endfor %}
< / tbody >
< / table >