Google Cloud Memorystore for Redis (cluster management) v1 API - Enum ClusterPersistenceConfig.Types.AOFConfig.Types.AppendFsync (1.3.0)

public enum ClusterPersistenceConfig.Types.AOFConfig.Types.AppendFsync

Reference documentation and code samples for the Google Cloud Memorystore for Redis (cluster management) v1 API enum ClusterPersistenceConfig.Types.AOFConfig.Types.AppendFsync.

Available fsync modes.

Namespace

Google.Cloud.Redis.Cluster.V1

Assembly

Google.Cloud.Redis.Cluster.V1.dll

Fields

Name Description
Always

fsync every time new commands are appended to the AOF. It has the best data loss protection at the cost of performance

Everysec

fsync every second. Fast enough, and you may lose 1 second of data if there is a disaster

No

Never fsync. Normally Linux will flush data every 30 seconds with this configuration, but it's up to the kernel's exact tuning.

Unspecified

Not set. Default: EVERYSEC