|
CacheKey | | (Required) This is a unique identifier for the DataLayer cache. Once cached, any other requests with the same CacheKey value will use the same cached data.
CacheKey has application scope, cached DataLayers may be shared among all user session. It may contain token values that vary the cache based on request variables or other values.
Caches can be made user-specific by using "@Session.ID~. Developers can also identify caches with multiple tokens and strings separated by commas or another delimiter. For example:
OrdersCache,@Session.ID~,@Request.someValue~
|
ExpirationNow | | When "True" the cache expires immediately and a new cache is created.
The default value is "False". |
ExpirationTime | | The time of day that the cache expires.
Use the 24 hour format of hours and minutes to enter the time. Separate the hours and minutes with a colon. For example: 05:00 is 5am, 14:24 is 2:24pm. |
ExpirationTimeSpan | | Sets the number of hours and minutes a cache file will remain valid.
If the file is older than this setting, the cache will be recreated. For example: 01:34 is one hour and 34 minutes. A cache created at 2pm will expire at 3:34pm. |
ID | | The ID attribute is a pervasive attribute that uniquely identifies an element within a definition file. The ID needs to be a unique value within the definition. |