LogOption

class LogOption

The LogOption class represents the database recovery option for an EzNoSQL database. The class may be used in the znsq_create() function as an argument to specify the recoverability configuration at the time of database definition

NONE

Configures the database as non-recoverable

Type:

int

UNDO

Configures the database as recoverable and supports backout logging only

Type:

int

ALL

Configures the database as recoverable and supports both backout and forward recovery logging. Please note that a log stream ID must be provided when selecting the ALL option

Type:

int

__new__(value)