Script Cache
In testing caching for script results, I noticed my script that is tagged to run on a Windows Agent executes the script each time it is run. The same script without a tag (I.e. using regular workers) does return the cached result immediately.
Is this expected behavior? My goal was to cache output from a script run against our active directory to populate a dashboard. It doesn't need to be executed with every app refresh because the data changes infrequently.
6 Replies
For testing I just used PowerShell script:
Start-Sleep 10
Write-Output "Hello World!"
It's an agent workers correct?
Yeah, agent worker on Windows
I think we don't support cache on agent at the moment
Are can add to backlog
It's because of the http requirement
Got it, thanks for confirming.