2.2.2.23 S2DCACHE_MODE

The S2DCACHE_MODE enumeration<19> represents the disk cache mode of cluster manager.

 typedef enum
 {
   S2DCacheMode_Disabled = 0x00000000,
   S2DCacheMode_Enabled = 0x00000002,
   S2DCacheMode_ReadOnly = 0x00000004,
   S2DCacheMode_ReadWrite = 0x00000008,
   S2DCacheMode_WriteOnly = 0x0000000c
 } S2DCacheMode;

S2DCacheMode_Disabled: This value indicates that the storage manager's disk cache access is disabled.

S2DCacheMode_Enabled: This value indicates that the storage manager’s disk cache access is enabled.

S2DCacheMode_ReadOnly: This value indicates that the storage manager's disk cache has read-only access.

S2DCacheMode_ReadWrite: This value indicates that the storage manager's disk cache has read/write access.

S2DCacheMode_WriteOnly: This value indicates that the storage manager's disk cache has write-only mode.