aggregator.query.cache
cache-hit
(cache-hit uri)
Touch the statement in the cache and retrieve it.
cache-hit-link
(cache-hit-link uri)
Touch the link in the link-cache and retrieve it.
cache-miss
(cache-miss uri statement)
Signalize to the caching engine that the statement is missing.
cache-miss-link
(cache-miss-link uri statement)
Signalize to the caching engine that the link is missing in the link-cache.
get-cached-links
(get-cached-links)
Returns all links currently in the link-cache.
get-cached-statements
(get-cached-statements)
Retrieve all arguments currently in the cache
links-storage
retrieve
(retrieve uri)
Retrieve the statement if it is present in the cache. Otherwise the function returns :missing
. If :missing
is returned it is best practice to trigger the cache-miss
method.
retrieve-link
(retrieve-link uri)
Retrieve the link if it is present in the link-cache. Otherwise the function returns :missing
. If :missing
is returned it is best practice to trigger the cache-miss-link
method.