Skip to content
Steve Brown edited this page Aug 15, 2016 · 3 revisions

Toaster can be used to specify a set of dynamic URLs to call on a scheduled basis. This is meant to cache the models of small service dependencies in such a way that the dependency can be unavailable during normal usage. This is useful when you know ahead of time which dependency calls will be used and that they won’t change.

Feature ideas:
Build caching call by using variables pulled from get requests:
a = get1
[b,c…​] = get2(a)
results in :
cachingCall(a,b)
cachingCall(a,c)
or:
cachingCall(a)
cachingCall(b)
cachingCall(c)
…​
or a combination of all of the above.

Clone this wiki locally