Skip to content

Commit 30d80fb

Browse files
committed
Minor adjustments in cache example
Signed-off-by: Jimmy Tanagra <[email protected]>
1 parent 3ab7138 commit 30d80fb

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

tutorials/getting_started/rules_advanced.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Save and test that you see the log statement and the Item receive the `ON` comma
141141
(hint, change the time passed to the timer to something smaller to make testing easier then change it back once things are working).
142142

143143
Now all we are lacking is the ability to reschedule that timer if motion is seen again in the 30 minute period.
144-
Looking back at the docs we find the [`cache`](/addons/automation/jsscripting/#cache).
144+
Looking back at the docs we find the [cache](/addons/automation/jsscripting/#cache).
145145
This is a map of key/value pairs that exists outside of the rule.
146146
Given that position it is able to share data between different rules or between runs of the same rule.
147147
We will use it to save that Timer so we can reschedule it later when needed.
@@ -150,23 +150,22 @@ We will use it to save that Timer so we can reschedule it later when needed.
150150
console.info('Motion was detected');
151151
items.getItem('FrontPorchLight').sendCommand('ON');
152152

153-
timerId = ruleUID+'_timer';
153+
timerId = 'FrontPorchLight_timer';
154154
var lightsOut = function() {
155155
console.info('No more motion, turning off the light');
156156
items.getItem('FrontPorchLight').sendCommand('OFF');
157-
cache.put(timerId, null);
157+
cache.private.put(timerId, null);
158158
};
159159

160-
var timer = cache.get(timerId);
160+
var timer = cache.private.get(timerId);
161161
if(!timer) {
162-
cache.put(timerId, ScriptExecution.createTimer(time.ZonedDateTime.now().plusMinutes(30), lightsOut));
162+
cache.private.put(timerId, ScriptExecution.createTimer(time.ZonedDateTime.now().plusMinutes(30), lightsOut));
163163
}
164164
else {
165-
timer.reschedule(time.ZonedDateTime.now());
165+
timer.reschedule(time.ZonedDateTime.now().plusMinutes(30));
166166
}
167167
```
168168

169-
Notice that we use the `ruleUID` which is a variable made available by the Helper Library to ensure that we don't overwrite on something added to the `cache` from another rule.
170169
Also notice a line was added to `lightsOut` to delete the entry in the `cache` when the timer ran.
171170
That will cause the rule to create a new timer the next time the rule runs.
172171
It could be coded to reuse the Timer instead which is an exercise for the reader.

0 commit comments

Comments
 (0)