Merge commit '3a49136da839d331884d4f43f9fb625417c9c928' into HEAD

pull/2219/head
openHAB Build Server 2023-12-17 10:00:19 +00:00
commit 9d3589f2df
1 changed files with 10 additions and 0 deletions

View File

@ -402,6 +402,16 @@ sharedCache.remove("x")
:::
::: tab DSL
```java
sharedCache.put('foo', 'bar')
sharedCache.get('foo') // returns null if doesn't exist
shareCache.put('foo', null) // deletes the entry
```
:::
::: tab Jython
```python