Cache (attribute of property)
From JRapid
cache is an attribute of property.
Contents |
Description
The cache attribute is used on properties to obtain better performance by using the information stored in the cache.
Usage
<entity name = NAME label = LABEL ... >
<property
name = NAME
label = LABEL
cache = CACHE
...
/>
</entity>
Example
This is useful for displaying entity-typed properties of entities that do not change frequently. A common case where we see this is in the satellite entities we might use in our applications. A satellite table is a list of options that though its content is variable it is mostly fixed.
See also
- cache (attribute of property)
The "cache" attribute is used in the entities and properties and the purpose is to obtain better performance by using the information stored in the cache.
Usage
<property name = NAME label = LABEL cache="cache" />
Example
This is useful for displaying entity-typed properties of entities that don‘t change frequently. A common case where we see this is in the satellite entities we might use in our applications. A satellite table is a list of options that though its content is variable it‘s mostly fixed.
