AMF output caching caches the result of a remote service call based on the timeout and slidingExpiration specified for the corresponding service in the configuration file. The serialized results are stored in the ASP.NET Cache and subsequent remote calls will first query the Cache to find previous results that will fulfill the current request.
The timeout specifies the number of minutes a result can be idle before it is abandoned. The default value is 30.
The slidingExpiration specifies whether sliding expiration is enabled. Sliding expiration resets a cached result's time to expiration upon each request. The default value is false.
The current caching works on application-level.
Sample:
<cache> <service timeout="30" slidingExpiration="false">FluorineWeb.EchoService.Echo</service> </cache>