Can response cache timeouts vary across API resources?
For example, this works as expected.
API response cache for 1hr.
<CacheKey>
<Prefix/>
<KeyFragment ref="request.uri" type="string"/>
</CacheKey>
<Scope>Exclusive</Scope>
<ExpirySettings>
<ExpiryDate/>
</TimeOfDay>
<TimeoutInSec ref="">3600</TimeoutInSec>
</ExpirySettings>
How can i configure Apigee to only cache this response for 15 secs?
Is there a way to add conditional logic into "TimeoutInSec" ?
<TimeoutInSec ref="">3600</TimeoutInSec>
Thanks in advance