Files
svc-api-x/v1/taffy/examples/coldspring_aop/endpoints/SamplesCaching.cfc
2024-10-23 11:17:42 +03:00

13 lines
456 B
Plaintext

<cfcomponent extends="taffy.core.resource" taffy:aopbean="sampleWithCachingAdvice" taffy:uri="/aop/caching" taffy:cache="true" taffy:cachetimeout="10" taffy:cacheunit="seconds">
<cffunction name="get" access="public" output="false" hint="">
<cfscript>
local.resourceData = StructNew();
local.resourceData["foo"] = "bar";
sleep(5000);
return representationOf(local.resourceData).withStatus(200);
</cfscript>
</cffunction>
</cfcomponent>