CacheDataAttrs Enumeration |
Options for controlling data caching behavior.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum CacheDataAttrs
<FlagsAttribute>
Public Enumeration CacheDataAttrs
Members
| Member name | Value | Description |
---|
| ByFilterAndSort | 1 |
When set, in addition to the page and pane information, caching of DataTables will be keyed off the IMapper
filter and sort criteria thereby giving a row-specific caching mechanism.
|
| CacheHTMLContent | 2 |
When set, any PageElementInfo that supports caching will have its HTML cached for performance reasons.
Typically when this attribute is set, you will also want to set the ByFilterAndSort attribute for data table caching.
Currently this attribute applies only to MiniDetail renderers.
|
| ForceMapperBeforeRequery | 4 |
Set this attribute for force the mapper to fire its Data event even when it has already obtained the
operational data from cache because caching is enabled and DataProvided is set.
Note that typically the MapperBeforeRequery
event is not fired when caching is enabled and DataProvided is set unless a cache-miss occurs or
ForceMapperBeforeRequery is set.
|
| ForceSlowIndicator | 8 |
Force the pane's slow-pane indicator to be shown. Normally the slow-pane is only shown when the pane's query
time exceeds the pane's PaneWarningThreshold.
|
See Also