Update _rocksdb.pyx
This commit is contained in:
parent
4989f5ccf0
commit
fdeab9f159
1 changed files with 6 additions and 0 deletions
|
@ -1412,6 +1412,12 @@ cdef class Options(ColumnFamilyOptions):
|
|||
def __set__(self, value):
|
||||
self.opts.WAL_ttl_seconds = value
|
||||
|
||||
property ttl:
|
||||
def __get__(self):
|
||||
return self.opts.ttl
|
||||
def __set__(self, value):
|
||||
self.opts.ttl = value
|
||||
|
||||
property wal_size_limit_mb:
|
||||
def __get__(self):
|
||||
return self.opts.WAL_size_limit_MB
|
||||
|
|
Loading…
Reference in a new issue