IRubricator.DefaultDwarf

Syntax

DefaultDwarf: Boolean;

Description

The DefaultDwarf property determines whether to use optimization on loading time series database data to memory.

Comments

Available values:

Example

Executing the example requires that the repository contains a time series database with the FC identifier. Add links to the Metabase and Cubes system assemblies.

Sub UserProc;
Var
    mb: IMetabase;
    Rubr: IRubricator;
Begin
    mb := MetabaseClass.Active;
    Rubr := mb.ItemById("FC").Edit As IRubricator;
    If Not Rubr.DefaultDwarf Then
        Rubr.DefaultDwarf := True;
        (Rubr As IMetabaseObject).Save;
    End If;
End Sub UserProc;

Time series database uses optimization while loading the data to the memory after example execution.

See also:

IRubricator