MiningStructure.CacheMode Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the caching mechanism used for training data retrieved while processing a mining structure.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

[DefaultValueAttribute(MiningStructureCacheMode.KeepTrainingCases)]
[RefreshPropertiesAttribute(RefreshProperties.All)]
public MiningStructureCacheMode CacheMode { get; set; }
public:
[DefaultValueAttribute(MiningStructureCacheMode::KeepTrainingCases)]
[RefreshPropertiesAttribute(RefreshProperties::All)]
property MiningStructureCacheMode CacheMode {
    MiningStructureCacheMode get();
    void set(MiningStructureCacheMode value);
}
[<DefaultValueAttribute(MiningStructureCacheMode.KeepTrainingCases)>]
[<RefreshPropertiesAttribute(RefreshProperties.All)>]
member CacheMode : MiningStructureCacheMode with get, set
<DefaultValueAttribute(MiningStructureCacheMode.KeepTrainingCases)>
<RefreshPropertiesAttribute(RefreshProperties.All)>
Public Property CacheMode As MiningStructureCacheMode

Property Value

Type: Microsoft.AnalysisServices.MiningStructureCacheMode

A MiningStructureCacheMode that determines the caching mechanism used for training data retrieved while processing a mining structure.

Remarks

The value of this property is limited to one of the strings in the following table.

Value

Description

KeepTrainingCases

Training cases are cached during and after processing.

ClearAfterProcessing

Training cases are cached during processing, but are deleted after processing.

See Also

MiningStructure Class
Microsoft.AnalysisServices Namespace

Return to top