PersistenceResponse

data class PersistenceResponse(val aofEnabled: Boolean? = null, val aofFrequency: String? = null, val rdbEnabled: Boolean? = null, val rdbFrequency: String? = null)

Persistence-related configuration for the RedisEnterprise database

Constructors

Link copied to clipboard
constructor(aofEnabled: Boolean? = null, aofFrequency: String? = null, rdbEnabled: Boolean? = null, rdbFrequency: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val aofEnabled: Boolean? = null

Sets whether AOF is enabled.

Link copied to clipboard
val aofFrequency: String? = null

Sets the frequency at which data is written to disk.

Link copied to clipboard
val rdbEnabled: Boolean? = null

Sets whether RDB is enabled.

Link copied to clipboard
val rdbFrequency: String? = null

Sets the frequency at which a snapshot of the database is created.