DbCachedInMicroCache

If the attribute is cached or not

Syntax

DbCachedInMicroCache "value";

Value Description
true Table column is cached.

Description

This property is only used instead of DbImplmentation property "micro-cache" or "micro-cache-array"

When DbImplementation is "micro-cache" or "micro-cache-array". all public attributes will be cached automatically.

This property is only used when another set of attributes than the public ones should be part of the micro cache. In that case, ALL included attributes needs to have this property set to "true". Also, the Dbimplementation property cannot be "micro-cache" or "micro-cache-array" since that overrides this property.

attributes {
   key        DemoId      TEXT(10)                 KMI-L;
   public     UnitType    ENUMERATION(IsoUnitType) AMI-L {
      DbCachedInMicroCache "true";
   }
   public     Name        TEXT(20)                 AMIUL;
   private    Description TEXT(200)                AMI-L {
      DbCachedInMicroCache "true";
   }
}

Related Properties


This page is generated from IFS Developer Studio at 2021-08-13 08:40.