CacheMode Propiedad
Gets or sets the caching mechanism used for training data retrieved while processing a mining structure.
Espacio de nombres: Microsoft.AnalysisServices
Ensamblado: Microsoft.AnalysisServices (en Microsoft.AnalysisServices.dll)
Sintaxis
'Declaración
Public Property CacheMode As MiningStructureCacheMode
Get
Set
'Uso
Dim instance As MiningStructure
Dim value As MiningStructureCacheMode
value = instance.CacheMode
instance.CacheMode = value
public MiningStructureCacheMode CacheMode { get; set; }
public:
property MiningStructureCacheMode CacheMode {
MiningStructureCacheMode get ();
void set (MiningStructureCacheMode value);
}
member CacheMode : MiningStructureCacheMode with get, set
function get CacheMode () : MiningStructureCacheMode
function set CacheMode (value : MiningStructureCacheMode)
Valor de la propiedad
Tipo: Microsoft.AnalysisServices. . :: . .MiningStructureCacheMode
A MiningStructureCacheMode that determines the caching mechanism used for training data retrieved while processing a mining structure.
Notas
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. |
Vea también