rocksdbswig

package
v0.0.0-...-9841dc2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 8, 2017 License: Apache-2.0 Imports: 4 Imported by: 0

README

Motivation

We have been using GoRocksDB. Some disadvantages are:

  • GoRocksDB is not always compatible with the latest version of RocksDB.
  • GoRocksDB uses the C API of RocksDB. To get a new function, you may have to modify both the C API and GoRocksDB.
  • I believe there is some unnecessary string copying with Get calls in the C API. See here. Notice the C++ code writes to a temporary string std::string tmp. Then we call CopyString which does a malloc and memcpy. Then GoRocksDB receives it as a []byte. And I suppose Go's GC will take care of it.

Difficulties

We wish that SWIG can do a better job, but it is a difficult tool to master. The main problem I encountered is DB**. DB::Open calls takes in a DB** argument and DB itself is an abstract class. SWIG has difficulty interpreting it.

We have tried different ways to fix this. One way is to use a '''typemap'''.

%typemap(in) rocksdb::DB ** (rocksdb::DB *temp) {
  $1 = &temp;
}

%typemap(argout) rocksdb::DB ** {
  %set_output(SWIG_NewPointerObj(SWIG_as_voidptr(*$1), $*1_descriptor, SWIG_POINTER_OWN));
}

This doesn't seem to work. This creates some DB ptr swig object which is undefined because DB is an abstract class.

To get around the abstract class problem, we tried using directors. But that seems to require that DBImpl is included as well. But the latter is an internal RocksDB object not found in the installed includes. I tried including more and more of these internal headers until I encountered some problem with the file port/port.h. Not sure why. For future reference, we tried including the following:

#include "/home/jchiu/rocksdb-4.6.1/port/port.h"
#include "/home/jchiu/rocksdb-4.6.1/util/coding.h"
#include "/home/jchiu/rocksdb-4.6.1/db/dbformat.h"
#include "/home/jchiu/rocksdb-4.6.1/db/memtable_list.h"
#include "/home/jchiu/rocksdb-4.6.1/db/column_family.h"
#include "/home/jchiu/rocksdb-4.6.1/db/db_impl.h"

We have also tried playing around with cpointers.i and pointer_functions. But I failed to massage it to work.

In the end, I decided to just add some functions for DB::Open and DB::Get. You can see these in extra.h. I am not sure if they work completely fine (I need a key that is in the database) and I am not sure if there is some unnecessary string copying due to SWIG.

How everything else works

We do not use .swigcxx as we want more control over the building and linking. See build.sh first. We run swig with a custom include folder. It generates C++ files in a subdirectory and a Go interface file in the current directory.

We then run a script add_cgo_flays.py to insert a #cgo LDFLAGS line into the Go file. One alternative is to set CGO_LDFLAGS in shell before you go build but this is not nice because any binary that uses that Go lib will need to do the same. The best way is to insert these flags right into the Go file. However, we couldn't find a way to do this in Swig. Most of the code insertion mechanisms in SWIG pertains to the .cxx file, not the Go file.

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Swig_escape_always_false bool
View Source
var Swig_escape_val interface{}

Functions

func DeleteColumnFamilyDescriptor

func DeleteColumnFamilyDescriptor(arg1 ColumnFamilyDescriptor)

func DeleteColumnFamilyHandle

func DeleteColumnFamilyHandle(arg1 ColumnFamilyHandle)

func DeleteColumnFamilyOptions

func DeleteColumnFamilyOptions(arg1 ColumnFamilyOptions)

func DeleteCompactRangeOptions

func DeleteCompactRangeOptions(arg1 CompactRangeOptions)

func DeleteCompactionOptions

func DeleteCompactionOptions(arg1 CompactionOptions)

func DeleteCompactionOptionsFIFO

func DeleteCompactionOptionsFIFO(arg1 CompactionOptionsFIFO)

func DeleteCompressionOptions

func DeleteCompressionOptions(arg1 CompressionOptions)

func DeleteDB

func DeleteDB(arg1 DB)

func DeleteDBOptions

func DeleteDBOptions(arg1 DBOptions)

func DeleteDbPath

func DeleteDbPath(arg1 DbPath)

func DeleteFlushOptions

func DeleteFlushOptions(arg1 FlushOptions)

func DeleteOptions

func DeleteOptions(arg1 Options)

func DeleteRange

func DeleteRange(arg1 Range)

func DeleteReadOptions

func DeleteReadOptions(arg1 ReadOptions)

func DeleteSlice

func DeleteSlice(arg1 Slice)

func DeleteSliceParts

func DeleteSliceParts(arg1 SliceParts)

func DeleteStatus

func DeleteStatus(arg1 Status)

func DeleteStatusDBPair

func DeleteStatusDBPair(arg1 StatusDBPair)

func DeleteStatusStringPair

func DeleteStatusStringPair(arg1 StatusStringPair)

func DeleteWriteOptions

func DeleteWriteOptions(arg1 WriteOptions)

func GetKDefaultColumnFamilyName

func GetKDefaultColumnFamilyName() (_swig_ret string)

func GetKMajorVersion

func GetKMajorVersion() (_swig_ret int)

func GetKMinorVersion

func GetKMinorVersion() (_swig_ret int)

func Swig_free

func Swig_free(arg1 uintptr)

Types

type ColumnFamilyDescriptor

type ColumnFamilyDescriptor interface {
	Swigcptr() uintptr
	SwigIsColumnFamilyDescriptor()
	SetName(arg2 string)
	GetName() (_swig_ret string)
	SetOptions(arg2 ColumnFamilyOptions)
	GetOptions() (_swig_ret ColumnFamilyOptions)
}

func NewColumnFamilyDescriptor

func NewColumnFamilyDescriptor(a ...interface{}) ColumnFamilyDescriptor

func NewColumnFamilyDescriptor__SWIG_0

func NewColumnFamilyDescriptor__SWIG_0() (_swig_ret ColumnFamilyDescriptor)

func NewColumnFamilyDescriptor__SWIG_1

func NewColumnFamilyDescriptor__SWIG_1(arg1 string, arg2 ColumnFamilyOptions) (_swig_ret ColumnFamilyDescriptor)

type ColumnFamilyHandle

type ColumnFamilyHandle interface {
	Swigcptr() uintptr
	SwigIsColumnFamilyHandle()
	GetName() (_swig_ret string)
	GetID() (_swig_ret Uint32_t)
	GetDescriptor(arg2 ColumnFamilyDescriptor) (_swig_ret Status)
}

type ColumnFamilyMetaData

type ColumnFamilyMetaData interface {
	Swigcptr() uintptr
}

type ColumnFamilyOptions

type ColumnFamilyOptions interface {
	Swigcptr() uintptr
	SwigIsColumnFamilyOptions()
	OptimizeForPointLookup(arg2 Uint64_t) (_swig_ret ColumnFamilyOptions)
	OptimizeLevelStyleCompaction(a ...interface{}) ColumnFamilyOptions
	OptimizeUniversalStyleCompaction(a ...interface{}) ColumnFamilyOptions
	SetComparator(arg2 Rocksdb_Comparator)
	GetComparator() (_swig_ret Rocksdb_Comparator)
	SetMerge_operator(arg2 Std_shared_ptr_Sl_rocksdb_MergeOperator_Sg_)
	GetMerge_operator() (_swig_ret Std_shared_ptr_Sl_rocksdb_MergeOperator_Sg_)
	SetCompaction_filter(arg2 Rocksdb_CompactionFilter)
	GetCompaction_filter() (_swig_ret Rocksdb_CompactionFilter)
	SetCompaction_filter_factory(arg2 Std_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_)
	GetCompaction_filter_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_)
	SetWrite_buffer_size(arg2 int64)
	GetWrite_buffer_size() (_swig_ret int64)
	SetMax_write_buffer_number(arg2 int)
	GetMax_write_buffer_number() (_swig_ret int)
	SetMin_write_buffer_number_to_merge(arg2 int)
	GetMin_write_buffer_number_to_merge() (_swig_ret int)
	SetMax_write_buffer_number_to_maintain(arg2 int)
	GetMax_write_buffer_number_to_maintain() (_swig_ret int)
	SetCompression(arg2 RocksdbCompressionType)
	GetCompression() (_swig_ret RocksdbCompressionType)
	SetCompression_per_level(arg2 Std_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_)
	GetCompression_per_level() (_swig_ret Std_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_)
	SetCompression_opts(arg2 CompressionOptions)
	GetCompression_opts() (_swig_ret CompressionOptions)
	SetPrefix_extractor(arg2 Std_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_)
	GetPrefix_extractor() (_swig_ret Std_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_)
	SetNum_levels(arg2 int)
	GetNum_levels() (_swig_ret int)
	SetLevel0_file_num_compaction_trigger(arg2 int)
	GetLevel0_file_num_compaction_trigger() (_swig_ret int)
	SetLevel0_slowdown_writes_trigger(arg2 int)
	GetLevel0_slowdown_writes_trigger() (_swig_ret int)
	SetLevel0_stop_writes_trigger(arg2 int)
	GetLevel0_stop_writes_trigger() (_swig_ret int)
	SetMax_mem_compaction_level(arg2 int)
	GetMax_mem_compaction_level() (_swig_ret int)
	SetTarget_file_size_base(arg2 Uint64_t)
	GetTarget_file_size_base() (_swig_ret Uint64_t)
	SetTarget_file_size_multiplier(arg2 int)
	GetTarget_file_size_multiplier() (_swig_ret int)
	SetMax_bytes_for_level_base(arg2 Uint64_t)
	GetMax_bytes_for_level_base() (_swig_ret Uint64_t)
	SetLevel_compaction_dynamic_level_bytes(arg2 bool)
	GetLevel_compaction_dynamic_level_bytes() (_swig_ret bool)
	SetMax_bytes_for_level_multiplier(arg2 int)
	GetMax_bytes_for_level_multiplier() (_swig_ret int)
	SetMax_bytes_for_level_multiplier_additional(arg2 Std_vector_Sl_int_Sg_)
	GetMax_bytes_for_level_multiplier_additional() (_swig_ret Std_vector_Sl_int_Sg_)
	SetExpanded_compaction_factor(arg2 int)
	GetExpanded_compaction_factor() (_swig_ret int)
	SetSource_compaction_factor(arg2 int)
	GetSource_compaction_factor() (_swig_ret int)
	SetMax_grandparent_overlap_factor(arg2 int)
	GetMax_grandparent_overlap_factor() (_swig_ret int)
	SetSoft_rate_limit(arg2 float64)
	GetSoft_rate_limit() (_swig_ret float64)
	SetHard_rate_limit(arg2 float64)
	GetHard_rate_limit() (_swig_ret float64)
	SetSoft_pending_compaction_bytes_limit(arg2 Uint64_t)
	GetSoft_pending_compaction_bytes_limit() (_swig_ret Uint64_t)
	SetHard_pending_compaction_bytes_limit(arg2 Uint64_t)
	GetHard_pending_compaction_bytes_limit() (_swig_ret Uint64_t)
	SetRate_limit_delay_max_milliseconds(arg2 uint)
	GetRate_limit_delay_max_milliseconds() (_swig_ret uint)
	SetArena_block_size(arg2 int64)
	GetArena_block_size() (_swig_ret int64)
	SetDisable_auto_compactions(arg2 bool)
	GetDisable_auto_compactions() (_swig_ret bool)
	SetPurge_redundant_kvs_while_flush(arg2 bool)
	GetPurge_redundant_kvs_while_flush() (_swig_ret bool)
	SetCompaction_style(arg2 RocksdbCompactionStyle)
	GetCompaction_style() (_swig_ret RocksdbCompactionStyle)
	SetCompaction_pri(arg2 RocksdbCompactionPri)
	GetCompaction_pri() (_swig_ret RocksdbCompactionPri)
	SetVerify_checksums_in_compaction(arg2 bool)
	GetVerify_checksums_in_compaction() (_swig_ret bool)
	SetCompaction_options_universal(arg2 CompactionOptionsUniversal)
	GetCompaction_options_universal() (_swig_ret CompactionOptionsUniversal)
	SetCompaction_options_fifo(arg2 CompactionOptionsFIFO)
	GetCompaction_options_fifo() (_swig_ret CompactionOptionsFIFO)
	SetFilter_deletes(arg2 bool)
	GetFilter_deletes() (_swig_ret bool)
	SetMax_sequential_skip_in_iterations(arg2 Uint64_t)
	GetMax_sequential_skip_in_iterations() (_swig_ret Uint64_t)
	SetMemtable_factory(arg2 Std_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_)
	GetMemtable_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_)
	SetTable_factory(arg2 Std_shared_ptr_Sl_rocksdb_TableFactory_Sg_)
	GetTable_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_TableFactory_Sg_)
	SetTable_properties_collector_factories(arg2 Std_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_)
	GetTable_properties_collector_factories() (_swig_ret Std_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_)
	SetInplace_update_support(arg2 bool)
	GetInplace_update_support() (_swig_ret bool)
	SetInplace_update_num_locks(arg2 int64)
	GetInplace_update_num_locks() (_swig_ret int64)
	SetInplace_callback(arg2 _swig_fnptr)
	GetInplace_callback() (_swig_ret _swig_fnptr)
	SetMemtable_prefix_bloom_bits(arg2 Uint32_t)
	GetMemtable_prefix_bloom_bits() (_swig_ret Uint32_t)
	SetMemtable_prefix_bloom_probes(arg2 Uint32_t)
	GetMemtable_prefix_bloom_probes() (_swig_ret Uint32_t)
	SetMemtable_prefix_bloom_huge_page_tlb_size(arg2 int64)
	GetMemtable_prefix_bloom_huge_page_tlb_size() (_swig_ret int64)
	SetBloom_locality(arg2 Uint32_t)
	GetBloom_locality() (_swig_ret Uint32_t)
	SetMax_successive_merges(arg2 int64)
	GetMax_successive_merges() (_swig_ret int64)
	SetMin_partial_merge_operands(arg2 Uint32_t)
	GetMin_partial_merge_operands() (_swig_ret Uint32_t)
	SetOptimize_filters_for_hits(arg2 bool)
	GetOptimize_filters_for_hits() (_swig_ret bool)
	SetParanoid_file_checks(arg2 bool)
	GetParanoid_file_checks() (_swig_ret bool)
	SetCompaction_measure_io_stats(arg2 bool)
	GetCompaction_measure_io_stats() (_swig_ret bool)
	Dump(arg2 Rocksdb_Logger)
}

func NewColumnFamilyOptions

func NewColumnFamilyOptions(a ...interface{}) ColumnFamilyOptions

func NewColumnFamilyOptions__SWIG_0

func NewColumnFamilyOptions__SWIG_0() (_swig_ret ColumnFamilyOptions)

func NewColumnFamilyOptions__SWIG_1

func NewColumnFamilyOptions__SWIG_1(arg1 Options) (_swig_ret ColumnFamilyOptions)

type CompactRangeOptions

type CompactRangeOptions interface {
	Swigcptr() uintptr
	SwigIsCompactRangeOptions()
	SetExclusive_manual_compaction(arg2 bool)
	GetExclusive_manual_compaction() (_swig_ret bool)
	SetChange_level(arg2 bool)
	GetChange_level() (_swig_ret bool)
	SetTarget_level(arg2 int)
	GetTarget_level() (_swig_ret int)
	SetTarget_path_id(arg2 Uint32_t)
	GetTarget_path_id() (_swig_ret Uint32_t)
	SetBottommost_level_compaction(arg2 RocksdbBottommostLevelCompaction)
	GetBottommost_level_compaction() (_swig_ret RocksdbBottommostLevelCompaction)
}

func NewCompactRangeOptions

func NewCompactRangeOptions() (_swig_ret CompactRangeOptions)

type CompactionOptions

type CompactionOptions interface {
	Swigcptr() uintptr
	SwigIsCompactionOptions()
	SetCompression(arg2 RocksdbCompressionType)
	GetCompression() (_swig_ret RocksdbCompressionType)
	SetOutput_file_size_limit(arg2 Uint64_t)
	GetOutput_file_size_limit() (_swig_ret Uint64_t)
}

func NewCompactionOptions

func NewCompactionOptions() (_swig_ret CompactionOptions)

type CompactionOptionsFIFO

type CompactionOptionsFIFO interface {
	Swigcptr() uintptr
	SwigIsCompactionOptionsFIFO()
	SetMax_table_files_size(arg2 Uint64_t)
	GetMax_table_files_size() (_swig_ret Uint64_t)
}

func NewCompactionOptionsFIFO

func NewCompactionOptionsFIFO() (_swig_ret CompactionOptionsFIFO)

type CompactionOptionsUniversal

type CompactionOptionsUniversal interface {
	Swigcptr() uintptr
}

type CompressionOptions

type CompressionOptions interface {
	Swigcptr() uintptr
	SwigIsCompressionOptions()
	SetWindow_bits(arg2 int)
	GetWindow_bits() (_swig_ret int)
	SetLevel(arg2 int)
	GetLevel() (_swig_ret int)
	SetStrategy(arg2 int)
	GetStrategy() (_swig_ret int)
}

func NewCompressionOptions

func NewCompressionOptions(a ...interface{}) CompressionOptions

func NewCompressionOptions__SWIG_0

func NewCompressionOptions__SWIG_0() (_swig_ret CompressionOptions)

func NewCompressionOptions__SWIG_1

func NewCompressionOptions__SWIG_1(arg1 int, arg2 int, arg3 int) (_swig_ret CompressionOptions)

type DB

type DB interface {
	Swigcptr() uintptr
	SwigIsDB()
	CreateColumnFamily(arg2 ColumnFamilyOptions, arg3 string, arg4 ColumnFamilyHandle) (_swig_ret Status)
	DropColumnFamily(arg2 ColumnFamilyHandle) (_swig_ret Status)
	Put(a ...interface{}) Status
	Delete(a ...interface{}) Status
	SingleDelete(a ...interface{}) Status
	Merge(a ...interface{}) Status
	Write(arg2 WriteOptions, arg3 Rocksdb_WriteBatch) (_swig_ret Status)
	Get(a ...interface{}) Status
	MultiGet(a ...interface{}) Std_vector_Sl_rocksdb_Status_Sg_
	KeyMayExist(a ...interface{}) bool
	NewIterator(a ...interface{}) Iterator
	NewIterators(arg2 ReadOptions, arg3 Std_vector_Sl_rocksdb_ColumnFamilyHandle_Sm__Sg_, arg4 Std_vector_Sl_Iterator_Sm__Sg_) (_swig_ret Status)
	GetSnapshot() (_swig_ret Rocksdb_Snapshot)
	ReleaseSnapshot(arg2 Rocksdb_Snapshot)
	GetProperty(a ...interface{}) bool
	GetIntProperty(a ...interface{}) bool
	GetAggregatedIntProperty(arg2 Slice, arg3 Uint64_t) (_swig_ret bool)
	GetApproximateSizes(a ...interface{})
	CompactRange(a ...interface{}) Status
	SetOptions(a ...interface{}) Status
	CompactFiles(a ...interface{}) Status
	PauseBackgroundWork() (_swig_ret Status)
	ContinueBackgroundWork() (_swig_ret Status)
	EnableAutoCompaction(arg2 Std_vector_Sl_rocksdb_ColumnFamilyHandle_Sm__Sg_) (_swig_ret Status)
	NumberLevels(a ...interface{}) int
	MaxMemCompactionLevel(a ...interface{}) int
	Level0StopWriteTrigger(a ...interface{}) int
	GetName() (_swig_ret string)
	GetEnv() (_swig_ret Rocksdb_Env)
	GetOptions(a ...interface{}) Options
	GetDBOptions() (_swig_ret DBOptions)
	Flush(a ...interface{}) Status
	SyncWAL() (_swig_ret Status)
	GetLatestSequenceNumber() (_swig_ret SequenceNumber)
	DisableFileDeletions() (_swig_ret Status)
	EnableFileDeletions(a ...interface{}) Status
	GetLiveFiles(a ...interface{}) Status
	GetSortedWalFiles(arg2 VectorLogPtr) (_swig_ret Status)
	GetUpdatesSince(a ...interface{}) Status
	DeleteFile(arg2 string) (_swig_ret Status)
	GetLiveFilesMetaData(arg2 Std_vector_Sl_LiveFileMetaData_Sg_)
	GetColumnFamilyMetaData(a ...interface{})
	AddFile(a ...interface{}) Status
	GetDbIdentity(arg2 *string) (_swig_ret Status)
	DefaultColumnFamily() (_swig_ret ColumnFamilyHandle)
	GetPropertiesOfAllTables(a ...interface{}) Status
	GetPropertiesOfTablesInRange(arg2 ColumnFamilyHandle, arg3 Range, arg4 Std_size_t, arg5 Std_unordered_map_Sl_std_string_Sc_std_shared_ptr_Sl_rocksdb_TableProperties_SS_const_Sg__Sg_) (_swig_ret Status)
	GetRootDB() (_swig_ret DB)
}

type DBOptions

type DBOptions interface {
	Swigcptr() uintptr
	SwigIsDBOptions()
	IncreaseParallelism(a ...interface{}) DBOptions
	SetCreate_if_missing(arg2 bool)
	GetCreate_if_missing() (_swig_ret bool)
	SetCreate_missing_column_families(arg2 bool)
	GetCreate_missing_column_families() (_swig_ret bool)
	SetError_if_exists(arg2 bool)
	GetError_if_exists() (_swig_ret bool)
	SetParanoid_checks(arg2 bool)
	GetParanoid_checks() (_swig_ret bool)
	SetEnv(arg2 Rocksdb_Env)
	GetEnv() (_swig_ret Rocksdb_Env)
	SetRate_limiter(arg2 Std_shared_ptr_Sl_rocksdb_RateLimiter_Sg_)
	GetRate_limiter() (_swig_ret Std_shared_ptr_Sl_rocksdb_RateLimiter_Sg_)
	SetSst_file_manager(arg2 Std_shared_ptr_Sl_rocksdb_SstFileManager_Sg_)
	GetSst_file_manager() (_swig_ret Std_shared_ptr_Sl_rocksdb_SstFileManager_Sg_)
	SetInfo_log(arg2 Std_shared_ptr_Sl_rocksdb_Logger_Sg_)
	GetInfo_log() (_swig_ret Std_shared_ptr_Sl_rocksdb_Logger_Sg_)
	SetInfo_log_level(arg2 RocksdbInfoLogLevel)
	GetInfo_log_level() (_swig_ret RocksdbInfoLogLevel)
	SetMax_open_files(arg2 int)
	GetMax_open_files() (_swig_ret int)
	SetMax_file_opening_threads(arg2 int)
	GetMax_file_opening_threads() (_swig_ret int)
	SetMax_total_wal_size(arg2 Uint64_t)
	GetMax_total_wal_size() (_swig_ret Uint64_t)
	SetStatistics(arg2 Std_shared_ptr_Sl_rocksdb_Statistics_Sg_)
	GetStatistics() (_swig_ret Std_shared_ptr_Sl_rocksdb_Statistics_Sg_)
	SetDisableDataSync(arg2 bool)
	GetDisableDataSync() (_swig_ret bool)
	SetUse_fsync(arg2 bool)
	GetUse_fsync() (_swig_ret bool)
	SetDb_paths(arg2 Std_vector_Sl_rocksdb_DbPath_Sg_)
	GetDb_paths() (_swig_ret Std_vector_Sl_rocksdb_DbPath_Sg_)
	SetDb_log_dir(arg2 string)
	GetDb_log_dir() (_swig_ret string)
	SetWal_dir(arg2 string)
	GetWal_dir() (_swig_ret string)
	SetDelete_obsolete_files_period_micros(arg2 Uint64_t)
	GetDelete_obsolete_files_period_micros() (_swig_ret Uint64_t)
	SetBase_background_compactions(arg2 int)
	GetBase_background_compactions() (_swig_ret int)
	SetMax_background_compactions(arg2 int)
	GetMax_background_compactions() (_swig_ret int)
	SetMax_subcompactions(arg2 Uint32_t)
	GetMax_subcompactions() (_swig_ret Uint32_t)
	SetMax_background_flushes(arg2 int)
	GetMax_background_flushes() (_swig_ret int)
	SetMax_log_file_size(arg2 int64)
	GetMax_log_file_size() (_swig_ret int64)
	SetLog_file_time_to_roll(arg2 int64)
	GetLog_file_time_to_roll() (_swig_ret int64)
	SetKeep_log_file_num(arg2 int64)
	GetKeep_log_file_num() (_swig_ret int64)
	SetRecycle_log_file_num(arg2 int64)
	GetRecycle_log_file_num() (_swig_ret int64)
	SetMax_manifest_file_size(arg2 Uint64_t)
	GetMax_manifest_file_size() (_swig_ret Uint64_t)
	SetTable_cache_numshardbits(arg2 int)
	GetTable_cache_numshardbits() (_swig_ret int)
	SetWAL_ttl_seconds(arg2 Uint64_t)
	GetWAL_ttl_seconds() (_swig_ret Uint64_t)
	SetWAL_size_limit_MB(arg2 Uint64_t)
	GetWAL_size_limit_MB() (_swig_ret Uint64_t)
	SetManifest_preallocation_size(arg2 int64)
	GetManifest_preallocation_size() (_swig_ret int64)
	SetAllow_os_buffer(arg2 bool)
	GetAllow_os_buffer() (_swig_ret bool)
	SetAllow_mmap_reads(arg2 bool)
	GetAllow_mmap_reads() (_swig_ret bool)
	SetAllow_mmap_writes(arg2 bool)
	GetAllow_mmap_writes() (_swig_ret bool)
	SetAllow_fallocate(arg2 bool)
	GetAllow_fallocate() (_swig_ret bool)
	SetIs_fd_close_on_exec(arg2 bool)
	GetIs_fd_close_on_exec() (_swig_ret bool)
	SetSkip_log_error_on_recovery(arg2 bool)
	GetSkip_log_error_on_recovery() (_swig_ret bool)
	SetStats_dump_period_sec(arg2 uint)
	GetStats_dump_period_sec() (_swig_ret uint)
	SetAdvise_random_on_open(arg2 bool)
	GetAdvise_random_on_open() (_swig_ret bool)
	SetDb_write_buffer_size(arg2 int64)
	GetDb_write_buffer_size() (_swig_ret int64)
	SetAccess_hint_on_compaction_start(arg2 RocksdbDBOptionsAccessHint)
	GetAccess_hint_on_compaction_start() (_swig_ret RocksdbDBOptionsAccessHint)
	SetNew_table_reader_for_compaction_inputs(arg2 bool)
	GetNew_table_reader_for_compaction_inputs() (_swig_ret bool)
	SetCompaction_readahead_size(arg2 int64)
	GetCompaction_readahead_size() (_swig_ret int64)
	SetRandom_access_max_buffer_size(arg2 int64)
	GetRandom_access_max_buffer_size() (_swig_ret int64)
	SetWritable_file_max_buffer_size(arg2 int64)
	GetWritable_file_max_buffer_size() (_swig_ret int64)
	SetUse_adaptive_mutex(arg2 bool)
	GetUse_adaptive_mutex() (_swig_ret bool)
	Dump(arg2 Rocksdb_Logger)
	SetBytes_per_sync(arg2 Uint64_t)
	GetBytes_per_sync() (_swig_ret Uint64_t)
	SetWal_bytes_per_sync(arg2 Uint64_t)
	GetWal_bytes_per_sync() (_swig_ret Uint64_t)
	SetListeners(arg2 Std_vector_Sl_std_shared_ptr_Sl_EventListener_Sg__Sg_)
	GetListeners() (_swig_ret Std_vector_Sl_std_shared_ptr_Sl_EventListener_Sg__Sg_)
	SetEnable_thread_tracking(arg2 bool)
	GetEnable_thread_tracking() (_swig_ret bool)
	SetDelayed_write_rate(arg2 Uint64_t)
	GetDelayed_write_rate() (_swig_ret Uint64_t)
	SetAllow_concurrent_memtable_write(arg2 bool)
	GetAllow_concurrent_memtable_write() (_swig_ret bool)
	SetEnable_write_thread_adaptive_yield(arg2 bool)
	GetEnable_write_thread_adaptive_yield() (_swig_ret bool)
	SetWrite_thread_max_yield_usec(arg2 Uint64_t)
	GetWrite_thread_max_yield_usec() (_swig_ret Uint64_t)
	SetWrite_thread_slow_yield_usec(arg2 Uint64_t)
	GetWrite_thread_slow_yield_usec() (_swig_ret Uint64_t)
	SetSkip_stats_update_on_db_open(arg2 bool)
	GetSkip_stats_update_on_db_open() (_swig_ret bool)
	SetWal_recovery_mode(arg2 RocksdbWALRecoveryMode)
	GetWal_recovery_mode() (_swig_ret RocksdbWALRecoveryMode)
	SetRow_cache(arg2 Std_shared_ptr_Sl_rocksdb_Cache_Sg_)
	GetRow_cache() (_swig_ret Std_shared_ptr_Sl_rocksdb_Cache_Sg_)
	SetWal_filter(arg2 Rocksdb_WalFilter)
	GetWal_filter() (_swig_ret Rocksdb_WalFilter)
	SetFail_if_options_file_error(arg2 bool)
	GetFail_if_options_file_error() (_swig_ret bool)
}

func NewDBOptions

func NewDBOptions(a ...interface{}) DBOptions

func NewDBOptions__SWIG_0

func NewDBOptions__SWIG_0() (_swig_ret DBOptions)

func NewDBOptions__SWIG_1

func NewDBOptions__SWIG_1(arg1 Options) (_swig_ret DBOptions)

type DbPath

type DbPath interface {
	Swigcptr() uintptr
	SwigIsDbPath()
	SetPath(arg2 string)
	GetPath() (_swig_ret string)
	SetTarget_size(arg2 Uint64_t)
	GetTarget_size() (_swig_ret Uint64_t)
}

func NewDbPath

func NewDbPath(a ...interface{}) DbPath

func NewDbPath__SWIG_0

func NewDbPath__SWIG_0() (_swig_ret DbPath)

func NewDbPath__SWIG_1

func NewDbPath__SWIG_1(arg1 string, arg2 Uint64_t) (_swig_ret DbPath)

type FlushOptions

type FlushOptions interface {
	Swigcptr() uintptr
	SwigIsFlushOptions()
	SetWait(arg2 bool)
	GetWait() (_swig_ret bool)
}

func NewFlushOptions

func NewFlushOptions() (_swig_ret FlushOptions)

type Iterator

type Iterator interface {
	Swigcptr() uintptr
}

type Options

type Options interface {
	Swigcptr() uintptr
	SwigIsOptions()
	Dump(arg2 Rocksdb_Logger)
	DumpCFOptions(arg2 Rocksdb_Logger)
	PrepareForBulkLoad() (_swig_ret Options)
	IncreaseParallelism(a ...interface{}) DBOptions
	SetCreate_if_missing(arg1 bool)
	GetCreate_if_missing() (_swig_ret bool)
	SetCreate_missing_column_families(arg1 bool)
	GetCreate_missing_column_families() (_swig_ret bool)
	SetError_if_exists(arg1 bool)
	GetError_if_exists() (_swig_ret bool)
	SetParanoid_checks(arg1 bool)
	GetParanoid_checks() (_swig_ret bool)
	SetEnv(arg1 Rocksdb_Env)
	GetEnv() (_swig_ret Rocksdb_Env)
	SetRate_limiter(arg1 Std_shared_ptr_Sl_rocksdb_RateLimiter_Sg_)
	GetRate_limiter() (_swig_ret Std_shared_ptr_Sl_rocksdb_RateLimiter_Sg_)
	SetSst_file_manager(arg1 Std_shared_ptr_Sl_rocksdb_SstFileManager_Sg_)
	GetSst_file_manager() (_swig_ret Std_shared_ptr_Sl_rocksdb_SstFileManager_Sg_)
	SetInfo_log(arg1 Std_shared_ptr_Sl_rocksdb_Logger_Sg_)
	GetInfo_log() (_swig_ret Std_shared_ptr_Sl_rocksdb_Logger_Sg_)
	SetInfo_log_level(arg1 RocksdbInfoLogLevel)
	GetInfo_log_level() (_swig_ret RocksdbInfoLogLevel)
	SetMax_open_files(arg1 int)
	GetMax_open_files() (_swig_ret int)
	SetMax_file_opening_threads(arg1 int)
	GetMax_file_opening_threads() (_swig_ret int)
	SetMax_total_wal_size(arg1 Uint64_t)
	GetMax_total_wal_size() (_swig_ret Uint64_t)
	SetStatistics(arg1 Std_shared_ptr_Sl_rocksdb_Statistics_Sg_)
	GetStatistics() (_swig_ret Std_shared_ptr_Sl_rocksdb_Statistics_Sg_)
	SetDisableDataSync(arg1 bool)
	GetDisableDataSync() (_swig_ret bool)
	SetUse_fsync(arg1 bool)
	GetUse_fsync() (_swig_ret bool)
	SetDb_paths(arg1 Std_vector_Sl_rocksdb_DbPath_Sg_)
	GetDb_paths() (_swig_ret Std_vector_Sl_rocksdb_DbPath_Sg_)
	SetDb_log_dir(arg1 string)
	GetDb_log_dir() (_swig_ret string)
	SetWal_dir(arg1 string)
	GetWal_dir() (_swig_ret string)
	SetDelete_obsolete_files_period_micros(arg1 Uint64_t)
	GetDelete_obsolete_files_period_micros() (_swig_ret Uint64_t)
	SetBase_background_compactions(arg1 int)
	GetBase_background_compactions() (_swig_ret int)
	SetMax_background_compactions(arg1 int)
	GetMax_background_compactions() (_swig_ret int)
	SetMax_subcompactions(arg1 Uint32_t)
	GetMax_subcompactions() (_swig_ret Uint32_t)
	SetMax_background_flushes(arg1 int)
	GetMax_background_flushes() (_swig_ret int)
	SetMax_log_file_size(arg1 int64)
	GetMax_log_file_size() (_swig_ret int64)
	SetLog_file_time_to_roll(arg1 int64)
	GetLog_file_time_to_roll() (_swig_ret int64)
	SetKeep_log_file_num(arg1 int64)
	GetKeep_log_file_num() (_swig_ret int64)
	SetRecycle_log_file_num(arg1 int64)
	GetRecycle_log_file_num() (_swig_ret int64)
	SetMax_manifest_file_size(arg1 Uint64_t)
	GetMax_manifest_file_size() (_swig_ret Uint64_t)
	SetTable_cache_numshardbits(arg1 int)
	GetTable_cache_numshardbits() (_swig_ret int)
	SetWAL_ttl_seconds(arg1 Uint64_t)
	GetWAL_ttl_seconds() (_swig_ret Uint64_t)
	SetWAL_size_limit_MB(arg1 Uint64_t)
	GetWAL_size_limit_MB() (_swig_ret Uint64_t)
	SetManifest_preallocation_size(arg1 int64)
	GetManifest_preallocation_size() (_swig_ret int64)
	SetAllow_os_buffer(arg1 bool)
	GetAllow_os_buffer() (_swig_ret bool)
	SetAllow_mmap_reads(arg1 bool)
	GetAllow_mmap_reads() (_swig_ret bool)
	SetAllow_mmap_writes(arg1 bool)
	GetAllow_mmap_writes() (_swig_ret bool)
	SetAllow_fallocate(arg1 bool)
	GetAllow_fallocate() (_swig_ret bool)
	SetIs_fd_close_on_exec(arg1 bool)
	GetIs_fd_close_on_exec() (_swig_ret bool)
	SetSkip_log_error_on_recovery(arg1 bool)
	GetSkip_log_error_on_recovery() (_swig_ret bool)
	SetStats_dump_period_sec(arg1 uint)
	GetStats_dump_period_sec() (_swig_ret uint)
	SetAdvise_random_on_open(arg1 bool)
	GetAdvise_random_on_open() (_swig_ret bool)
	SetDb_write_buffer_size(arg1 int64)
	GetDb_write_buffer_size() (_swig_ret int64)
	SetAccess_hint_on_compaction_start(arg1 RocksdbDBOptionsAccessHint)
	GetAccess_hint_on_compaction_start() (_swig_ret RocksdbDBOptionsAccessHint)
	SetNew_table_reader_for_compaction_inputs(arg1 bool)
	GetNew_table_reader_for_compaction_inputs() (_swig_ret bool)
	SetCompaction_readahead_size(arg1 int64)
	GetCompaction_readahead_size() (_swig_ret int64)
	SetRandom_access_max_buffer_size(arg1 int64)
	GetRandom_access_max_buffer_size() (_swig_ret int64)
	SetWritable_file_max_buffer_size(arg1 int64)
	GetWritable_file_max_buffer_size() (_swig_ret int64)
	SetUse_adaptive_mutex(arg1 bool)
	GetUse_adaptive_mutex() (_swig_ret bool)
	SetBytes_per_sync(arg1 Uint64_t)
	GetBytes_per_sync() (_swig_ret Uint64_t)
	SetWal_bytes_per_sync(arg1 Uint64_t)
	GetWal_bytes_per_sync() (_swig_ret Uint64_t)
	SetListeners(arg1 Std_vector_Sl_std_shared_ptr_Sl_EventListener_Sg__Sg_)
	GetListeners() (_swig_ret Std_vector_Sl_std_shared_ptr_Sl_EventListener_Sg__Sg_)
	SetEnable_thread_tracking(arg1 bool)
	GetEnable_thread_tracking() (_swig_ret bool)
	SetDelayed_write_rate(arg1 Uint64_t)
	GetDelayed_write_rate() (_swig_ret Uint64_t)
	SetAllow_concurrent_memtable_write(arg1 bool)
	GetAllow_concurrent_memtable_write() (_swig_ret bool)
	SetEnable_write_thread_adaptive_yield(arg1 bool)
	GetEnable_write_thread_adaptive_yield() (_swig_ret bool)
	SetWrite_thread_max_yield_usec(arg1 Uint64_t)
	GetWrite_thread_max_yield_usec() (_swig_ret Uint64_t)
	SetWrite_thread_slow_yield_usec(arg1 Uint64_t)
	GetWrite_thread_slow_yield_usec() (_swig_ret Uint64_t)
	SetSkip_stats_update_on_db_open(arg1 bool)
	GetSkip_stats_update_on_db_open() (_swig_ret bool)
	SetWal_recovery_mode(arg1 RocksdbWALRecoveryMode)
	GetWal_recovery_mode() (_swig_ret RocksdbWALRecoveryMode)
	SetRow_cache(arg1 Std_shared_ptr_Sl_rocksdb_Cache_Sg_)
	GetRow_cache() (_swig_ret Std_shared_ptr_Sl_rocksdb_Cache_Sg_)
	SetWal_filter(arg1 Rocksdb_WalFilter)
	GetWal_filter() (_swig_ret Rocksdb_WalFilter)
	SetFail_if_options_file_error(arg1 bool)
	GetFail_if_options_file_error() (_swig_ret bool)
	OptimizeForPointLookup(arg1 Uint64_t) (_swig_ret ColumnFamilyOptions)
	OptimizeLevelStyleCompaction(a ...interface{}) ColumnFamilyOptions
	OptimizeUniversalStyleCompaction(a ...interface{}) ColumnFamilyOptions
	SetComparator(arg1 Rocksdb_Comparator)
	GetComparator() (_swig_ret Rocksdb_Comparator)
	SetMerge_operator(arg1 Std_shared_ptr_Sl_rocksdb_MergeOperator_Sg_)
	GetMerge_operator() (_swig_ret Std_shared_ptr_Sl_rocksdb_MergeOperator_Sg_)
	SetCompaction_filter(arg1 Rocksdb_CompactionFilter)
	GetCompaction_filter() (_swig_ret Rocksdb_CompactionFilter)
	SetCompaction_filter_factory(arg1 Std_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_)
	GetCompaction_filter_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_)
	SetWrite_buffer_size(arg1 int64)
	GetWrite_buffer_size() (_swig_ret int64)
	SetMax_write_buffer_number(arg1 int)
	GetMax_write_buffer_number() (_swig_ret int)
	SetMin_write_buffer_number_to_merge(arg1 int)
	GetMin_write_buffer_number_to_merge() (_swig_ret int)
	SetMax_write_buffer_number_to_maintain(arg1 int)
	GetMax_write_buffer_number_to_maintain() (_swig_ret int)
	SetCompression(arg1 RocksdbCompressionType)
	GetCompression() (_swig_ret RocksdbCompressionType)
	SetCompression_per_level(arg1 Std_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_)
	GetCompression_per_level() (_swig_ret Std_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_)
	SetCompression_opts(arg1 CompressionOptions)
	GetCompression_opts() (_swig_ret CompressionOptions)
	SetPrefix_extractor(arg1 Std_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_)
	GetPrefix_extractor() (_swig_ret Std_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_)
	SetNum_levels(arg1 int)
	GetNum_levels() (_swig_ret int)
	SetLevel0_file_num_compaction_trigger(arg1 int)
	GetLevel0_file_num_compaction_trigger() (_swig_ret int)
	SetLevel0_slowdown_writes_trigger(arg1 int)
	GetLevel0_slowdown_writes_trigger() (_swig_ret int)
	SetLevel0_stop_writes_trigger(arg1 int)
	GetLevel0_stop_writes_trigger() (_swig_ret int)
	SetMax_mem_compaction_level(arg1 int)
	GetMax_mem_compaction_level() (_swig_ret int)
	SetTarget_file_size_base(arg1 Uint64_t)
	GetTarget_file_size_base() (_swig_ret Uint64_t)
	SetTarget_file_size_multiplier(arg1 int)
	GetTarget_file_size_multiplier() (_swig_ret int)
	SetMax_bytes_for_level_base(arg1 Uint64_t)
	GetMax_bytes_for_level_base() (_swig_ret Uint64_t)
	SetLevel_compaction_dynamic_level_bytes(arg1 bool)
	GetLevel_compaction_dynamic_level_bytes() (_swig_ret bool)
	SetMax_bytes_for_level_multiplier(arg1 int)
	GetMax_bytes_for_level_multiplier() (_swig_ret int)
	SetMax_bytes_for_level_multiplier_additional(arg1 Std_vector_Sl_int_Sg_)
	GetMax_bytes_for_level_multiplier_additional() (_swig_ret Std_vector_Sl_int_Sg_)
	SetExpanded_compaction_factor(arg1 int)
	GetExpanded_compaction_factor() (_swig_ret int)
	SetSource_compaction_factor(arg1 int)
	GetSource_compaction_factor() (_swig_ret int)
	SetMax_grandparent_overlap_factor(arg1 int)
	GetMax_grandparent_overlap_factor() (_swig_ret int)
	SetSoft_rate_limit(arg1 float64)
	GetSoft_rate_limit() (_swig_ret float64)
	SetHard_rate_limit(arg1 float64)
	GetHard_rate_limit() (_swig_ret float64)
	SetSoft_pending_compaction_bytes_limit(arg1 Uint64_t)
	GetSoft_pending_compaction_bytes_limit() (_swig_ret Uint64_t)
	SetHard_pending_compaction_bytes_limit(arg1 Uint64_t)
	GetHard_pending_compaction_bytes_limit() (_swig_ret Uint64_t)
	SetRate_limit_delay_max_milliseconds(arg1 uint)
	GetRate_limit_delay_max_milliseconds() (_swig_ret uint)
	SetArena_block_size(arg1 int64)
	GetArena_block_size() (_swig_ret int64)
	SetDisable_auto_compactions(arg1 bool)
	GetDisable_auto_compactions() (_swig_ret bool)
	SetPurge_redundant_kvs_while_flush(arg1 bool)
	GetPurge_redundant_kvs_while_flush() (_swig_ret bool)
	SetCompaction_style(arg1 RocksdbCompactionStyle)
	GetCompaction_style() (_swig_ret RocksdbCompactionStyle)
	SetCompaction_pri(arg1 RocksdbCompactionPri)
	GetCompaction_pri() (_swig_ret RocksdbCompactionPri)
	SetVerify_checksums_in_compaction(arg1 bool)
	GetVerify_checksums_in_compaction() (_swig_ret bool)
	SetCompaction_options_universal(arg1 CompactionOptionsUniversal)
	GetCompaction_options_universal() (_swig_ret CompactionOptionsUniversal)
	SetCompaction_options_fifo(arg1 CompactionOptionsFIFO)
	GetCompaction_options_fifo() (_swig_ret CompactionOptionsFIFO)
	SetFilter_deletes(arg1 bool)
	GetFilter_deletes() (_swig_ret bool)
	SetMax_sequential_skip_in_iterations(arg1 Uint64_t)
	GetMax_sequential_skip_in_iterations() (_swig_ret Uint64_t)
	SetMemtable_factory(arg1 Std_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_)
	GetMemtable_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_)
	SetTable_factory(arg1 Std_shared_ptr_Sl_rocksdb_TableFactory_Sg_)
	GetTable_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_TableFactory_Sg_)
	SetTable_properties_collector_factories(arg1 Std_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_)
	GetTable_properties_collector_factories() (_swig_ret Std_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_)
	SetInplace_update_support(arg1 bool)
	GetInplace_update_support() (_swig_ret bool)
	SetInplace_update_num_locks(arg1 int64)
	GetInplace_update_num_locks() (_swig_ret int64)
	SetInplace_callback(arg1 _swig_fnptr)
	GetInplace_callback() (_swig_ret _swig_fnptr)
	SetMemtable_prefix_bloom_bits(arg1 Uint32_t)
	GetMemtable_prefix_bloom_bits() (_swig_ret Uint32_t)
	SetMemtable_prefix_bloom_probes(arg1 Uint32_t)
	GetMemtable_prefix_bloom_probes() (_swig_ret Uint32_t)
	SetMemtable_prefix_bloom_huge_page_tlb_size(arg1 int64)
	GetMemtable_prefix_bloom_huge_page_tlb_size() (_swig_ret int64)
	SetBloom_locality(arg1 Uint32_t)
	GetBloom_locality() (_swig_ret Uint32_t)
	SetMax_successive_merges(arg1 int64)
	GetMax_successive_merges() (_swig_ret int64)
	SetMin_partial_merge_operands(arg1 Uint32_t)
	GetMin_partial_merge_operands() (_swig_ret Uint32_t)
	SetOptimize_filters_for_hits(arg1 bool)
	GetOptimize_filters_for_hits() (_swig_ret bool)
	SetParanoid_file_checks(arg1 bool)
	GetParanoid_file_checks() (_swig_ret bool)
	SetCompaction_measure_io_stats(arg1 bool)
	GetCompaction_measure_io_stats() (_swig_ret bool)
	SwigIsDBOptions()
	SwigGetDBOptions() DBOptions
	SwigGetColumnFamilyOptions() (_swig_ret ColumnFamilyOptions)
}

func GetOptions

func GetOptions(a ...interface{}) Options

func GetOptions__SWIG_0

func GetOptions__SWIG_0(arg1 int64, arg2 int, arg3 int, arg4 Uint64_t) (_swig_ret Options)

func GetOptions__SWIG_1

func GetOptions__SWIG_1(arg1 int64, arg2 int, arg3 int) (_swig_ret Options)

func GetOptions__SWIG_2

func GetOptions__SWIG_2(arg1 int64, arg2 int) (_swig_ret Options)

func GetOptions__SWIG_3

func GetOptions__SWIG_3(arg1 int64) (_swig_ret Options)

func NewOptions

func NewOptions(a ...interface{}) Options

func NewOptions__SWIG_0

func NewOptions__SWIG_0() (_swig_ret Options)

func NewOptions__SWIG_1

func NewOptions__SWIG_1(arg1 DBOptions, arg2 ColumnFamilyOptions) (_swig_ret Options)

type Range

type Range interface {
	Swigcptr() uintptr
	SwigIsRange()
	SetStart(arg2 Slice)
	GetStart() (_swig_ret Slice)
	SetLimit(arg2 Slice)
	GetLimit() (_swig_ret Slice)
}

func NewRange

func NewRange(a ...interface{}) Range

func NewRange__SWIG_0

func NewRange__SWIG_0() (_swig_ret Range)

func NewRange__SWIG_1

func NewRange__SWIG_1(arg1 Slice, arg2 Slice) (_swig_ret Range)

type ReadOptions

type ReadOptions interface {
	Swigcptr() uintptr
	SwigIsReadOptions()
	SetVerify_checksums(arg2 bool)
	GetVerify_checksums() (_swig_ret bool)
	SetFill_cache(arg2 bool)
	GetFill_cache() (_swig_ret bool)
	SetSnapshot(arg2 Rocksdb_Snapshot)
	GetSnapshot() (_swig_ret Rocksdb_Snapshot)
	SetIterate_upper_bound(arg2 Slice)
	GetIterate_upper_bound() (_swig_ret Slice)
	SetRead_tier(arg2 RocksdbReadTier)
	GetRead_tier() (_swig_ret RocksdbReadTier)
	SetTailing(arg2 bool)
	GetTailing() (_swig_ret bool)
	SetManaged(arg2 bool)
	GetManaged() (_swig_ret bool)
	SetTotal_order_seek(arg2 bool)
	GetTotal_order_seek() (_swig_ret bool)
	SetPrefix_same_as_start(arg2 bool)
	GetPrefix_same_as_start() (_swig_ret bool)
	SetPin_data(arg2 bool)
	GetPin_data() (_swig_ret bool)
}

func NewReadOptions

func NewReadOptions(a ...interface{}) ReadOptions

func NewReadOptions__SWIG_0

func NewReadOptions__SWIG_0() (_swig_ret ReadOptions)

func NewReadOptions__SWIG_1

func NewReadOptions__SWIG_1(arg1 bool, arg2 bool) (_swig_ret ReadOptions)

type RocksdbBottommostLevelCompaction

type RocksdbBottommostLevelCompaction int
var BottommostLevelCompaction_kForce RocksdbBottommostLevelCompaction = _swig_getBottommostLevelCompaction_kForce()
var BottommostLevelCompaction_kIfHaveCompactionFilter RocksdbBottommostLevelCompaction = _swig_getBottommostLevelCompaction_kIfHaveCompactionFilter()
var BottommostLevelCompaction_kSkip RocksdbBottommostLevelCompaction = _swig_getBottommostLevelCompaction_kSkip()

type RocksdbCompactionPri

type RocksdbCompactionPri int
var KByCompensatedSize RocksdbCompactionPri = _swig_getkByCompensatedSize()
var KMinOverlappingRatio RocksdbCompactionPri = _swig_getkMinOverlappingRatio()
var KOldestLargestSeqFirst RocksdbCompactionPri = _swig_getkOldestLargestSeqFirst()
var KOldestSmallestSeqFirst RocksdbCompactionPri = _swig_getkOldestSmallestSeqFirst()

type RocksdbCompactionStyle

type RocksdbCompactionStyle int
var KCompactionStyleFIFO RocksdbCompactionStyle = _swig_getkCompactionStyleFIFO()
var KCompactionStyleLevel RocksdbCompactionStyle = _swig_getkCompactionStyleLevel()
var KCompactionStyleNone RocksdbCompactionStyle = _swig_getkCompactionStyleNone()
var KCompactionStyleUniversal RocksdbCompactionStyle = _swig_getkCompactionStyleUniversal()

type RocksdbCompressionType

type RocksdbCompressionType int
var KBZip2Compression RocksdbCompressionType = _swig_getkBZip2Compression()
var KLZ4Compression RocksdbCompressionType = _swig_getkLZ4Compression()
var KLZ4HCCompression RocksdbCompressionType = _swig_getkLZ4HCCompression()
var KNoCompression RocksdbCompressionType = _swig_getkNoCompression()
var KSnappyCompression RocksdbCompressionType = _swig_getkSnappyCompression()
var KZSTDNotFinalCompression RocksdbCompressionType = _swig_getkZSTDNotFinalCompression()
var KZlibCompression RocksdbCompressionType = _swig_getkZlibCompression()

type RocksdbDBOptionsAccessHint

type RocksdbDBOptionsAccessHint int
var DBOptionsNONE RocksdbDBOptionsAccessHint = _swig_getDBOptions_NONE_DBOptions()
var DBOptionsNORMAL RocksdbDBOptionsAccessHint = _swig_getDBOptions_NORMAL_DBOptions()
var DBOptionsSEQUENTIAL RocksdbDBOptionsAccessHint = _swig_getDBOptions_SEQUENTIAL_DBOptions()
var DBOptionsWILLNEED RocksdbDBOptionsAccessHint = _swig_getDBOptions_WILLNEED_DBOptions()

type RocksdbInfoLogLevel

type RocksdbInfoLogLevel int

type RocksdbReadTier

type RocksdbReadTier int
var KBlockCacheTier RocksdbReadTier = _swig_getkBlockCacheTier()
var KPersistedTier RocksdbReadTier = _swig_getkPersistedTier()
var KReadAllTier RocksdbReadTier = _swig_getkReadAllTier()

type RocksdbStatusCode

type RocksdbStatusCode int
var StatusKAborted RocksdbStatusCode = _swig_getStatus_kAborted_Status()
var StatusKBusy RocksdbStatusCode = _swig_getStatus_kBusy_Status()
var StatusKCorruption RocksdbStatusCode = _swig_getStatus_kCorruption_Status()
var StatusKExpired RocksdbStatusCode = _swig_getStatus_kExpired_Status()
var StatusKIOError RocksdbStatusCode = _swig_getStatus_kIOError_Status()
var StatusKIncomplete RocksdbStatusCode = _swig_getStatus_kIncomplete_Status()
var StatusKInvalidArgument RocksdbStatusCode = _swig_getStatus_kInvalidArgument_Status()
var StatusKMergeInProgress RocksdbStatusCode = _swig_getStatus_kMergeInProgress_Status()
var StatusKNotFound RocksdbStatusCode = _swig_getStatus_kNotFound_Status()
var StatusKNotSupported RocksdbStatusCode = _swig_getStatus_kNotSupported_Status()
var StatusKOk RocksdbStatusCode = _swig_getStatus_kOk_Status()
var StatusKShutdownInProgress RocksdbStatusCode = _swig_getStatus_kShutdownInProgress_Status()
var StatusKTimedOut RocksdbStatusCode = _swig_getStatus_kTimedOut_Status()
var StatusKTryAgain RocksdbStatusCode = _swig_getStatus_kTryAgain_Status()

type RocksdbStatusSubCode

type RocksdbStatusSubCode int
var StatusKLockLimit RocksdbStatusSubCode = _swig_getStatus_kLockLimit_Status()
var StatusKLockTimeout RocksdbStatusSubCode = _swig_getStatus_kLockTimeout_Status()
var StatusKMaxSubCode RocksdbStatusSubCode = _swig_getStatus_kMaxSubCode_Status()
var StatusKMutexTimeout RocksdbStatusSubCode = _swig_getStatus_kMutexTimeout_Status()
var StatusKNone RocksdbStatusSubCode = _swig_getStatus_kNone_Status()

type RocksdbUpdateStatus

type RocksdbUpdateStatus int
var UPDATED RocksdbUpdateStatus = _swig_getUPDATED()
var UPDATED_INPLACE RocksdbUpdateStatus = _swig_getUPDATED_INPLACE()
var UPDATE_FAILED RocksdbUpdateStatus = _swig_getUPDATE_FAILED()

type RocksdbWALRecoveryMode

type RocksdbWALRecoveryMode int
var WALRecoveryMode_kAbsoluteConsistency RocksdbWALRecoveryMode = _swig_getWALRecoveryMode_kAbsoluteConsistency()
var WALRecoveryMode_kPointInTimeRecovery RocksdbWALRecoveryMode = _swig_getWALRecoveryMode_kPointInTimeRecovery()
var WALRecoveryMode_kSkipAnyCorruptedRecords RocksdbWALRecoveryMode = _swig_getWALRecoveryMode_kSkipAnyCorruptedRecords()
var WALRecoveryMode_kTolerateCorruptedTailRecords RocksdbWALRecoveryMode = _swig_getWALRecoveryMode_kTolerateCorruptedTailRecords()

type Rocksdb_CompactionFilter

type Rocksdb_CompactionFilter interface {
	Swigcptr() uintptr
}

type Rocksdb_Comparator

type Rocksdb_Comparator interface {
	Swigcptr() uintptr
}

type Rocksdb_Env

type Rocksdb_Env interface {
	Swigcptr() uintptr
}

type Rocksdb_ExternalSstFileInfo

type Rocksdb_ExternalSstFileInfo interface {
	Swigcptr() uintptr
}

type Rocksdb_Logger

type Rocksdb_Logger interface {
	Swigcptr() uintptr
}

type Rocksdb_Snapshot

type Rocksdb_Snapshot interface {
	Swigcptr() uintptr
}

type Rocksdb_WalFilter

type Rocksdb_WalFilter interface {
	Swigcptr() uintptr
}

type Rocksdb_WriteBatch

type Rocksdb_WriteBatch interface {
	Swigcptr() uintptr
}

type SequenceNumber

type SequenceNumber interface {
	Swigcptr() uintptr
}

type Slice

type Slice interface {
	Swigcptr() uintptr
	SwigIsSlice()
	Data() (_swig_ret string)
	Size() (_swig_ret int64)
	Empty() (_swig_ret bool)
	Clear()
	Remove_prefix(arg2 int64)
	Remove_suffix(arg2 int64)
	ToString(a ...interface{}) string
	Compare(arg2 Slice) (_swig_ret int)
	Starts_with(arg2 Slice) (_swig_ret bool)
	Ends_with(arg2 Slice) (_swig_ret bool)
	Difference_offset(arg2 Slice) (_swig_ret int64)
	SetData_(arg2 string)
	GetData_() (_swig_ret string)
	SetSize_(arg2 int64)
	GetSize_() (_swig_ret int64)
}

func NewSlice

func NewSlice(a ...interface{}) Slice

func NewSlice__SWIG_0

func NewSlice__SWIG_0() (_swig_ret Slice)

func NewSlice__SWIG_1

func NewSlice__SWIG_1(arg1 string, arg2 int64) (_swig_ret Slice)

func NewSlice__SWIG_2

func NewSlice__SWIG_2(arg1 string) (_swig_ret Slice)

func NewSlice__SWIG_3

func NewSlice__SWIG_3(arg1 string) (_swig_ret Slice)

func NewSlice__SWIG_4

func NewSlice__SWIG_4(arg1 SliceParts, arg2 *string) (_swig_ret Slice)

type SliceParts

type SliceParts interface {
	Swigcptr() uintptr
	SwigIsSliceParts()
	SetParts(arg2 Slice)
	GetParts() (_swig_ret Slice)
	SetNum_parts(arg2 int)
	GetNum_parts() (_swig_ret int)
}

func NewSliceParts

func NewSliceParts(a ...interface{}) SliceParts

func NewSliceParts__SWIG_0

func NewSliceParts__SWIG_0(arg1 Slice, arg2 int) (_swig_ret SliceParts)

func NewSliceParts__SWIG_1

func NewSliceParts__SWIG_1() (_swig_ret SliceParts)

type Status

type Status interface {
	Swigcptr() uintptr
	SwigIsStatus()
	Code() (_swig_ret RocksdbStatusCode)
	Subcode() (_swig_ret RocksdbStatusSubCode)
	Ok() (_swig_ret bool)
	IsNotFound() (_swig_ret bool)
	IsCorruption() (_swig_ret bool)
	IsNotSupported() (_swig_ret bool)
	IsInvalidArgument() (_swig_ret bool)
	IsIOError() (_swig_ret bool)
	IsMergeInProgress() (_swig_ret bool)
	IsIncomplete() (_swig_ret bool)
	IsShutdownInProgress() (_swig_ret bool)
	IsTimedOut() (_swig_ret bool)
	IsAborted() (_swig_ret bool)
	IsBusy() (_swig_ret bool)
	IsExpired() (_swig_ret bool)
	IsTryAgain() (_swig_ret bool)
	ToString() (_swig_ret string)
}

func CreateLoggerFromOptions

func CreateLoggerFromOptions(arg1 string, arg2 DBOptions, arg3 Std_shared_ptr_Sl_rocksdb_Logger_Sg_) (_swig_ret Status)

func DBListColumnFamilies

func DBListColumnFamilies(arg1 DBOptions, arg2 string, arg3 Std_vector_Sl_std_string_Sg_) (_swig_ret Status)

func DBOpen

func DBOpen(a ...interface{}) Status

func DBOpenForReadOnly

func DBOpenForReadOnly(a ...interface{}) Status

func DBOpenForReadOnly__SWIG_0

func DBOpenForReadOnly__SWIG_0(arg1 Options, arg2 string, arg3 DB, arg4 bool) (_swig_ret Status)

func DBOpenForReadOnly__SWIG_1

func DBOpenForReadOnly__SWIG_1(arg1 Options, arg2 string, arg3 DB) (_swig_ret Status)

func DBOpen__SWIG_0

func DBOpen__SWIG_0(arg1 Options, arg2 string, arg3 DB) (_swig_ret Status)

func DestroyDB

func DestroyDB(arg1 string, arg2 Options) (_swig_ret Status)

func NewStatus

func NewStatus(a ...interface{}) Status

func NewStatus__SWIG_0

func NewStatus__SWIG_0() (_swig_ret Status)

func NewStatus__SWIG_1

func NewStatus__SWIG_1(arg1 Status) (_swig_ret Status)

func NewStatus__SWIG_2

func NewStatus__SWIG_2(arg1 uintptr) (_swig_ret Status)

func RepairDB

func RepairDB(arg1 string, arg2 Options) (_swig_ret Status)

func StatusAborted

func StatusAborted(a ...interface{}) Status

func StatusAborted__SWIG_0

func StatusAborted__SWIG_0(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusAborted__SWIG_1

func StatusAborted__SWIG_1() (_swig_ret Status)

func StatusAborted__SWIG_2

func StatusAborted__SWIG_2(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusAborted__SWIG_3

func StatusAborted__SWIG_3(arg1 Slice) (_swig_ret Status)

func StatusBusy

func StatusBusy(a ...interface{}) Status

func StatusBusy__SWIG_0

func StatusBusy__SWIG_0(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusBusy__SWIG_1

func StatusBusy__SWIG_1() (_swig_ret Status)

func StatusBusy__SWIG_2

func StatusBusy__SWIG_2(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusBusy__SWIG_3

func StatusBusy__SWIG_3(arg1 Slice) (_swig_ret Status)

func StatusCorruption

func StatusCorruption(a ...interface{}) Status

func StatusCorruption__SWIG_0

func StatusCorruption__SWIG_0(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusCorruption__SWIG_1

func StatusCorruption__SWIG_1(arg1 Slice) (_swig_ret Status)

func StatusCorruption__SWIG_2

func StatusCorruption__SWIG_2(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusCorruption__SWIG_3

func StatusCorruption__SWIG_3() (_swig_ret Status)

func StatusExpired

func StatusExpired(a ...interface{}) Status

func StatusExpired__SWIG_0

func StatusExpired__SWIG_0(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusExpired__SWIG_1

func StatusExpired__SWIG_1() (_swig_ret Status)

func StatusExpired__SWIG_2

func StatusExpired__SWIG_2(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusExpired__SWIG_3

func StatusExpired__SWIG_3(arg1 Slice) (_swig_ret Status)

func StatusIOError

func StatusIOError(a ...interface{}) Status

func StatusIOError__SWIG_0

func StatusIOError__SWIG_0(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusIOError__SWIG_1

func StatusIOError__SWIG_1(arg1 Slice) (_swig_ret Status)

func StatusIOError__SWIG_2

func StatusIOError__SWIG_2(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusIOError__SWIG_3

func StatusIOError__SWIG_3() (_swig_ret Status)

func StatusIncomplete

func StatusIncomplete(a ...interface{}) Status

func StatusIncomplete__SWIG_0

func StatusIncomplete__SWIG_0(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusIncomplete__SWIG_1

func StatusIncomplete__SWIG_1(arg1 Slice) (_swig_ret Status)

func StatusIncomplete__SWIG_2

func StatusIncomplete__SWIG_2(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusIncomplete__SWIG_3

func StatusIncomplete__SWIG_3() (_swig_ret Status)

func StatusInvalidArgument

func StatusInvalidArgument(a ...interface{}) Status

func StatusInvalidArgument__SWIG_0

func StatusInvalidArgument__SWIG_0(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusInvalidArgument__SWIG_1

func StatusInvalidArgument__SWIG_1(arg1 Slice) (_swig_ret Status)

func StatusInvalidArgument__SWIG_2

func StatusInvalidArgument__SWIG_2(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusInvalidArgument__SWIG_3

func StatusInvalidArgument__SWIG_3() (_swig_ret Status)

func StatusMergeInProgress

func StatusMergeInProgress(a ...interface{}) Status

func StatusMergeInProgress__SWIG_0

func StatusMergeInProgress__SWIG_0(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusMergeInProgress__SWIG_1

func StatusMergeInProgress__SWIG_1(arg1 Slice) (_swig_ret Status)

func StatusMergeInProgress__SWIG_2

func StatusMergeInProgress__SWIG_2(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusMergeInProgress__SWIG_3

func StatusMergeInProgress__SWIG_3() (_swig_ret Status)

func StatusNotFound

func StatusNotFound(a ...interface{}) Status

func StatusNotFound__SWIG_0

func StatusNotFound__SWIG_0(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusNotFound__SWIG_1

func StatusNotFound__SWIG_1(arg1 Slice) (_swig_ret Status)

func StatusNotFound__SWIG_2

func StatusNotFound__SWIG_2(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusNotFound__SWIG_3

func StatusNotFound__SWIG_3() (_swig_ret Status)

func StatusNotSupported

func StatusNotSupported(a ...interface{}) Status

func StatusNotSupported__SWIG_0

func StatusNotSupported__SWIG_0(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusNotSupported__SWIG_1

func StatusNotSupported__SWIG_1(arg1 Slice) (_swig_ret Status)

func StatusNotSupported__SWIG_2

func StatusNotSupported__SWIG_2(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusNotSupported__SWIG_3

func StatusNotSupported__SWIG_3() (_swig_ret Status)

func StatusOK

func StatusOK() (_swig_ret Status)

func StatusShutdownInProgress

func StatusShutdownInProgress(a ...interface{}) Status

func StatusShutdownInProgress__SWIG_0

func StatusShutdownInProgress__SWIG_0(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusShutdownInProgress__SWIG_1

func StatusShutdownInProgress__SWIG_1() (_swig_ret Status)

func StatusShutdownInProgress__SWIG_2

func StatusShutdownInProgress__SWIG_2(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusShutdownInProgress__SWIG_3

func StatusShutdownInProgress__SWIG_3(arg1 Slice) (_swig_ret Status)

func StatusTimedOut

func StatusTimedOut(a ...interface{}) Status

func StatusTimedOut__SWIG_0

func StatusTimedOut__SWIG_0(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusTimedOut__SWIG_1

func StatusTimedOut__SWIG_1() (_swig_ret Status)

func StatusTimedOut__SWIG_2

func StatusTimedOut__SWIG_2(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusTimedOut__SWIG_3

func StatusTimedOut__SWIG_3(arg1 Slice) (_swig_ret Status)

func StatusTryAgain

func StatusTryAgain(a ...interface{}) Status

func StatusTryAgain__SWIG_0

func StatusTryAgain__SWIG_0(arg1 RocksdbStatusSubCode) (_swig_ret Status)

func StatusTryAgain__SWIG_1

func StatusTryAgain__SWIG_1() (_swig_ret Status)

func StatusTryAgain__SWIG_2

func StatusTryAgain__SWIG_2(arg1 Slice, arg2 Slice) (_swig_ret Status)

func StatusTryAgain__SWIG_3

func StatusTryAgain__SWIG_3(arg1 Slice) (_swig_ret Status)

type StatusDBPair

type StatusDBPair interface {
	Swigcptr() uintptr
	SwigIsStatusDBPair()
	SetStatus(arg2 Status)
	GetStatus() (_swig_ret Status)
	SetDb(arg2 DB)
	GetDb() (_swig_ret DB)
}

func MyDBOpen

func MyDBOpen(arg1 Options, arg2 string) (_swig_ret StatusDBPair)

func NewStatusDBPair

func NewStatusDBPair() (_swig_ret StatusDBPair)

type StatusStringPair

type StatusStringPair interface {
	Swigcptr() uintptr
	SwigIsStatusStringPair()
	SetStatus(arg2 Status)
	GetStatus() (_swig_ret Status)
	SetValue(arg2 string)
	GetValue() (_swig_ret string)
}

func MyDBGet

func MyDBGet(arg1 DB, arg2 ReadOptions, arg3 Slice) (_swig_ret StatusStringPair)

func NewStatusStringPair

func NewStatusStringPair() (_swig_ret StatusStringPair)

type Std_shared_ptr_Sl_rocksdb_Cache_Sg_

type Std_shared_ptr_Sl_rocksdb_Cache_Sg_ interface {
	Swigcptr() uintptr
}

type Std_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_

type Std_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_ interface {
	Swigcptr() uintptr
}

type Std_shared_ptr_Sl_rocksdb_Logger_Sg_

type Std_shared_ptr_Sl_rocksdb_Logger_Sg_ interface {
	Swigcptr() uintptr
}

type Std_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_

type Std_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_ interface {
	Swigcptr() uintptr
}

type Std_shared_ptr_Sl_rocksdb_MergeOperator_Sg_

type Std_shared_ptr_Sl_rocksdb_MergeOperator_Sg_ interface {
	Swigcptr() uintptr
}

type Std_shared_ptr_Sl_rocksdb_RateLimiter_Sg_

type Std_shared_ptr_Sl_rocksdb_RateLimiter_Sg_ interface {
	Swigcptr() uintptr
}

type Std_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_

type Std_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_ interface {
	Swigcptr() uintptr
}

type Std_shared_ptr_Sl_rocksdb_SstFileManager_Sg_

type Std_shared_ptr_Sl_rocksdb_SstFileManager_Sg_ interface {
	Swigcptr() uintptr
}

type Std_shared_ptr_Sl_rocksdb_Statistics_Sg_

type Std_shared_ptr_Sl_rocksdb_Statistics_Sg_ interface {
	Swigcptr() uintptr
}

type Std_shared_ptr_Sl_rocksdb_TableFactory_Sg_

type Std_shared_ptr_Sl_rocksdb_TableFactory_Sg_ interface {
	Swigcptr() uintptr
}

type Std_size_t

type Std_size_t interface {
	Swigcptr() uintptr
}

type Std_unordered_map_Sl_std_string_Sc_std_shared_ptr_Sl_rocksdb_TableProperties_SS_const_Sg__Sg_

type Std_unordered_map_Sl_std_string_Sc_std_shared_ptr_Sl_rocksdb_TableProperties_SS_const_Sg__Sg_ interface {
	Swigcptr() uintptr
}

type Std_unordered_map_Sl_std_string_Sc_std_string_Sg_

type Std_unordered_map_Sl_std_string_Sc_std_string_Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_Iterator_Sm__Sg_

type Std_vector_Sl_Iterator_Sm__Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_LiveFileMetaData_Sg_

type Std_vector_Sl_LiveFileMetaData_Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_

type Std_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_int_Sg_

type Std_vector_Sl_int_Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_rocksdb_ColumnFamilyDescriptor_Sg_

type Std_vector_Sl_rocksdb_ColumnFamilyDescriptor_Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_rocksdb_ColumnFamilyHandle_Sm__Sg_

type Std_vector_Sl_rocksdb_ColumnFamilyHandle_Sm__Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_rocksdb_DbPath_Sg_

type Std_vector_Sl_rocksdb_DbPath_Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_rocksdb_Slice_Sg_

type Std_vector_Sl_rocksdb_Slice_Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_rocksdb_Status_Sg_

type Std_vector_Sl_rocksdb_Status_Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_std_shared_ptr_Sl_EventListener_Sg__Sg_

type Std_vector_Sl_std_shared_ptr_Sl_EventListener_Sg__Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_

type Std_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_ interface {
	Swigcptr() uintptr
}

type Std_vector_Sl_std_string_Sg_

type Std_vector_Sl_std_string_Sg_ interface {
	Swigcptr() uintptr
}

type SwigcptrColumnFamilyDescriptor

type SwigcptrColumnFamilyDescriptor uintptr

func (SwigcptrColumnFamilyDescriptor) GetName

func (arg1 SwigcptrColumnFamilyDescriptor) GetName() (_swig_ret string)

func (SwigcptrColumnFamilyDescriptor) GetOptions

func (arg1 SwigcptrColumnFamilyDescriptor) GetOptions() (_swig_ret ColumnFamilyOptions)

func (SwigcptrColumnFamilyDescriptor) SetName

func (arg1 SwigcptrColumnFamilyDescriptor) SetName(arg2 string)

func (SwigcptrColumnFamilyDescriptor) SetOptions

func (SwigcptrColumnFamilyDescriptor) SwigIsColumnFamilyDescriptor

func (p SwigcptrColumnFamilyDescriptor) SwigIsColumnFamilyDescriptor()

func (SwigcptrColumnFamilyDescriptor) Swigcptr

type SwigcptrColumnFamilyHandle

type SwigcptrColumnFamilyHandle uintptr

func (SwigcptrColumnFamilyHandle) GetDescriptor

func (arg1 SwigcptrColumnFamilyHandle) GetDescriptor(arg2 ColumnFamilyDescriptor) (_swig_ret Status)

func (SwigcptrColumnFamilyHandle) GetID

func (arg1 SwigcptrColumnFamilyHandle) GetID() (_swig_ret Uint32_t)

func (SwigcptrColumnFamilyHandle) GetName

func (arg1 SwigcptrColumnFamilyHandle) GetName() (_swig_ret string)

func (SwigcptrColumnFamilyHandle) SwigIsColumnFamilyHandle

func (p SwigcptrColumnFamilyHandle) SwigIsColumnFamilyHandle()

func (SwigcptrColumnFamilyHandle) Swigcptr

func (p SwigcptrColumnFamilyHandle) Swigcptr() uintptr

type SwigcptrColumnFamilyMetaData

type SwigcptrColumnFamilyMetaData uintptr

func (SwigcptrColumnFamilyMetaData) Swigcptr

type SwigcptrColumnFamilyOptions

type SwigcptrColumnFamilyOptions uintptr

func (SwigcptrColumnFamilyOptions) Dump

func (SwigcptrColumnFamilyOptions) GetArena_block_size

func (arg1 SwigcptrColumnFamilyOptions) GetArena_block_size() (_swig_ret int64)

func (SwigcptrColumnFamilyOptions) GetBloom_locality

func (arg1 SwigcptrColumnFamilyOptions) GetBloom_locality() (_swig_ret Uint32_t)

func (SwigcptrColumnFamilyOptions) GetCompaction_filter

func (arg1 SwigcptrColumnFamilyOptions) GetCompaction_filter() (_swig_ret Rocksdb_CompactionFilter)

func (SwigcptrColumnFamilyOptions) GetCompaction_filter_factory

func (arg1 SwigcptrColumnFamilyOptions) GetCompaction_filter_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_)

func (SwigcptrColumnFamilyOptions) GetCompaction_measure_io_stats

func (arg1 SwigcptrColumnFamilyOptions) GetCompaction_measure_io_stats() (_swig_ret bool)

func (SwigcptrColumnFamilyOptions) GetCompaction_options_fifo

func (arg1 SwigcptrColumnFamilyOptions) GetCompaction_options_fifo() (_swig_ret CompactionOptionsFIFO)

func (SwigcptrColumnFamilyOptions) GetCompaction_options_universal

func (arg1 SwigcptrColumnFamilyOptions) GetCompaction_options_universal() (_swig_ret CompactionOptionsUniversal)

func (SwigcptrColumnFamilyOptions) GetCompaction_pri

func (arg1 SwigcptrColumnFamilyOptions) GetCompaction_pri() (_swig_ret RocksdbCompactionPri)

func (SwigcptrColumnFamilyOptions) GetCompaction_style

func (arg1 SwigcptrColumnFamilyOptions) GetCompaction_style() (_swig_ret RocksdbCompactionStyle)

func (SwigcptrColumnFamilyOptions) GetComparator

func (arg1 SwigcptrColumnFamilyOptions) GetComparator() (_swig_ret Rocksdb_Comparator)

func (SwigcptrColumnFamilyOptions) GetCompression

func (arg1 SwigcptrColumnFamilyOptions) GetCompression() (_swig_ret RocksdbCompressionType)

func (SwigcptrColumnFamilyOptions) GetCompression_opts

func (arg1 SwigcptrColumnFamilyOptions) GetCompression_opts() (_swig_ret CompressionOptions)

func (SwigcptrColumnFamilyOptions) GetCompression_per_level

func (arg1 SwigcptrColumnFamilyOptions) GetCompression_per_level() (_swig_ret Std_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_)

func (SwigcptrColumnFamilyOptions) GetDisable_auto_compactions

func (arg1 SwigcptrColumnFamilyOptions) GetDisable_auto_compactions() (_swig_ret bool)

func (SwigcptrColumnFamilyOptions) GetExpanded_compaction_factor

func (arg1 SwigcptrColumnFamilyOptions) GetExpanded_compaction_factor() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetFilter_deletes

func (arg1 SwigcptrColumnFamilyOptions) GetFilter_deletes() (_swig_ret bool)

func (SwigcptrColumnFamilyOptions) GetHard_pending_compaction_bytes_limit

func (arg1 SwigcptrColumnFamilyOptions) GetHard_pending_compaction_bytes_limit() (_swig_ret Uint64_t)

func (SwigcptrColumnFamilyOptions) GetHard_rate_limit

func (arg1 SwigcptrColumnFamilyOptions) GetHard_rate_limit() (_swig_ret float64)

func (SwigcptrColumnFamilyOptions) GetInplace_callback

func (arg1 SwigcptrColumnFamilyOptions) GetInplace_callback() (_swig_ret _swig_fnptr)

func (SwigcptrColumnFamilyOptions) GetInplace_update_num_locks

func (arg1 SwigcptrColumnFamilyOptions) GetInplace_update_num_locks() (_swig_ret int64)

func (SwigcptrColumnFamilyOptions) GetInplace_update_support

func (arg1 SwigcptrColumnFamilyOptions) GetInplace_update_support() (_swig_ret bool)

func (SwigcptrColumnFamilyOptions) GetLevel0_file_num_compaction_trigger

func (arg1 SwigcptrColumnFamilyOptions) GetLevel0_file_num_compaction_trigger() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetLevel0_slowdown_writes_trigger

func (arg1 SwigcptrColumnFamilyOptions) GetLevel0_slowdown_writes_trigger() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetLevel0_stop_writes_trigger

func (arg1 SwigcptrColumnFamilyOptions) GetLevel0_stop_writes_trigger() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetLevel_compaction_dynamic_level_bytes

func (arg1 SwigcptrColumnFamilyOptions) GetLevel_compaction_dynamic_level_bytes() (_swig_ret bool)

func (SwigcptrColumnFamilyOptions) GetMax_bytes_for_level_base

func (arg1 SwigcptrColumnFamilyOptions) GetMax_bytes_for_level_base() (_swig_ret Uint64_t)

func (SwigcptrColumnFamilyOptions) GetMax_bytes_for_level_multiplier

func (arg1 SwigcptrColumnFamilyOptions) GetMax_bytes_for_level_multiplier() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetMax_bytes_for_level_multiplier_additional

func (arg1 SwigcptrColumnFamilyOptions) GetMax_bytes_for_level_multiplier_additional() (_swig_ret Std_vector_Sl_int_Sg_)

func (SwigcptrColumnFamilyOptions) GetMax_grandparent_overlap_factor

func (arg1 SwigcptrColumnFamilyOptions) GetMax_grandparent_overlap_factor() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetMax_mem_compaction_level

func (arg1 SwigcptrColumnFamilyOptions) GetMax_mem_compaction_level() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetMax_sequential_skip_in_iterations

func (arg1 SwigcptrColumnFamilyOptions) GetMax_sequential_skip_in_iterations() (_swig_ret Uint64_t)

func (SwigcptrColumnFamilyOptions) GetMax_successive_merges

func (arg1 SwigcptrColumnFamilyOptions) GetMax_successive_merges() (_swig_ret int64)

func (SwigcptrColumnFamilyOptions) GetMax_write_buffer_number

func (arg1 SwigcptrColumnFamilyOptions) GetMax_write_buffer_number() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetMax_write_buffer_number_to_maintain

func (arg1 SwigcptrColumnFamilyOptions) GetMax_write_buffer_number_to_maintain() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetMemtable_factory

func (SwigcptrColumnFamilyOptions) GetMemtable_prefix_bloom_bits

func (arg1 SwigcptrColumnFamilyOptions) GetMemtable_prefix_bloom_bits() (_swig_ret Uint32_t)

func (SwigcptrColumnFamilyOptions) GetMemtable_prefix_bloom_huge_page_tlb_size

func (arg1 SwigcptrColumnFamilyOptions) GetMemtable_prefix_bloom_huge_page_tlb_size() (_swig_ret int64)

func (SwigcptrColumnFamilyOptions) GetMemtable_prefix_bloom_probes

func (arg1 SwigcptrColumnFamilyOptions) GetMemtable_prefix_bloom_probes() (_swig_ret Uint32_t)

func (SwigcptrColumnFamilyOptions) GetMerge_operator

func (arg1 SwigcptrColumnFamilyOptions) GetMerge_operator() (_swig_ret Std_shared_ptr_Sl_rocksdb_MergeOperator_Sg_)

func (SwigcptrColumnFamilyOptions) GetMin_partial_merge_operands

func (arg1 SwigcptrColumnFamilyOptions) GetMin_partial_merge_operands() (_swig_ret Uint32_t)

func (SwigcptrColumnFamilyOptions) GetMin_write_buffer_number_to_merge

func (arg1 SwigcptrColumnFamilyOptions) GetMin_write_buffer_number_to_merge() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetNum_levels

func (arg1 SwigcptrColumnFamilyOptions) GetNum_levels() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetOptimize_filters_for_hits

func (arg1 SwigcptrColumnFamilyOptions) GetOptimize_filters_for_hits() (_swig_ret bool)

func (SwigcptrColumnFamilyOptions) GetParanoid_file_checks

func (arg1 SwigcptrColumnFamilyOptions) GetParanoid_file_checks() (_swig_ret bool)

func (SwigcptrColumnFamilyOptions) GetPrefix_extractor

func (SwigcptrColumnFamilyOptions) GetPurge_redundant_kvs_while_flush

func (arg1 SwigcptrColumnFamilyOptions) GetPurge_redundant_kvs_while_flush() (_swig_ret bool)

func (SwigcptrColumnFamilyOptions) GetRate_limit_delay_max_milliseconds

func (arg1 SwigcptrColumnFamilyOptions) GetRate_limit_delay_max_milliseconds() (_swig_ret uint)

func (SwigcptrColumnFamilyOptions) GetSoft_pending_compaction_bytes_limit

func (arg1 SwigcptrColumnFamilyOptions) GetSoft_pending_compaction_bytes_limit() (_swig_ret Uint64_t)

func (SwigcptrColumnFamilyOptions) GetSoft_rate_limit

func (arg1 SwigcptrColumnFamilyOptions) GetSoft_rate_limit() (_swig_ret float64)

func (SwigcptrColumnFamilyOptions) GetSource_compaction_factor

func (arg1 SwigcptrColumnFamilyOptions) GetSource_compaction_factor() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetTable_factory

func (arg1 SwigcptrColumnFamilyOptions) GetTable_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_TableFactory_Sg_)

func (SwigcptrColumnFamilyOptions) GetTable_properties_collector_factories

func (SwigcptrColumnFamilyOptions) GetTarget_file_size_base

func (arg1 SwigcptrColumnFamilyOptions) GetTarget_file_size_base() (_swig_ret Uint64_t)

func (SwigcptrColumnFamilyOptions) GetTarget_file_size_multiplier

func (arg1 SwigcptrColumnFamilyOptions) GetTarget_file_size_multiplier() (_swig_ret int)

func (SwigcptrColumnFamilyOptions) GetVerify_checksums_in_compaction

func (arg1 SwigcptrColumnFamilyOptions) GetVerify_checksums_in_compaction() (_swig_ret bool)

func (SwigcptrColumnFamilyOptions) GetWrite_buffer_size

func (arg1 SwigcptrColumnFamilyOptions) GetWrite_buffer_size() (_swig_ret int64)

func (SwigcptrColumnFamilyOptions) OptimizeForPointLookup

func (arg1 SwigcptrColumnFamilyOptions) OptimizeForPointLookup(arg2 Uint64_t) (_swig_ret ColumnFamilyOptions)

func (SwigcptrColumnFamilyOptions) OptimizeLevelStyleCompaction

func (p SwigcptrColumnFamilyOptions) OptimizeLevelStyleCompaction(a ...interface{}) ColumnFamilyOptions

func (SwigcptrColumnFamilyOptions) OptimizeLevelStyleCompaction__SWIG_0

func (arg1 SwigcptrColumnFamilyOptions) OptimizeLevelStyleCompaction__SWIG_0(arg2 Uint64_t) (_swig_ret ColumnFamilyOptions)

func (SwigcptrColumnFamilyOptions) OptimizeLevelStyleCompaction__SWIG_1

func (arg1 SwigcptrColumnFamilyOptions) OptimizeLevelStyleCompaction__SWIG_1() (_swig_ret ColumnFamilyOptions)

func (SwigcptrColumnFamilyOptions) OptimizeUniversalStyleCompaction

func (p SwigcptrColumnFamilyOptions) OptimizeUniversalStyleCompaction(a ...interface{}) ColumnFamilyOptions

func (SwigcptrColumnFamilyOptions) OptimizeUniversalStyleCompaction__SWIG_0

func (arg1 SwigcptrColumnFamilyOptions) OptimizeUniversalStyleCompaction__SWIG_0(arg2 Uint64_t) (_swig_ret ColumnFamilyOptions)

func (SwigcptrColumnFamilyOptions) OptimizeUniversalStyleCompaction__SWIG_1

func (arg1 SwigcptrColumnFamilyOptions) OptimizeUniversalStyleCompaction__SWIG_1() (_swig_ret ColumnFamilyOptions)

func (SwigcptrColumnFamilyOptions) SetArena_block_size

func (arg1 SwigcptrColumnFamilyOptions) SetArena_block_size(arg2 int64)

func (SwigcptrColumnFamilyOptions) SetBloom_locality

func (arg1 SwigcptrColumnFamilyOptions) SetBloom_locality(arg2 Uint32_t)

func (SwigcptrColumnFamilyOptions) SetCompaction_filter

func (arg1 SwigcptrColumnFamilyOptions) SetCompaction_filter(arg2 Rocksdb_CompactionFilter)

func (SwigcptrColumnFamilyOptions) SetCompaction_filter_factory

func (SwigcptrColumnFamilyOptions) SetCompaction_measure_io_stats

func (arg1 SwigcptrColumnFamilyOptions) SetCompaction_measure_io_stats(arg2 bool)

func (SwigcptrColumnFamilyOptions) SetCompaction_options_fifo

func (arg1 SwigcptrColumnFamilyOptions) SetCompaction_options_fifo(arg2 CompactionOptionsFIFO)

func (SwigcptrColumnFamilyOptions) SetCompaction_options_universal

func (arg1 SwigcptrColumnFamilyOptions) SetCompaction_options_universal(arg2 CompactionOptionsUniversal)

func (SwigcptrColumnFamilyOptions) SetCompaction_pri

func (arg1 SwigcptrColumnFamilyOptions) SetCompaction_pri(arg2 RocksdbCompactionPri)

func (SwigcptrColumnFamilyOptions) SetCompaction_style

func (arg1 SwigcptrColumnFamilyOptions) SetCompaction_style(arg2 RocksdbCompactionStyle)

func (SwigcptrColumnFamilyOptions) SetComparator

func (arg1 SwigcptrColumnFamilyOptions) SetComparator(arg2 Rocksdb_Comparator)

func (SwigcptrColumnFamilyOptions) SetCompression

func (arg1 SwigcptrColumnFamilyOptions) SetCompression(arg2 RocksdbCompressionType)

func (SwigcptrColumnFamilyOptions) SetCompression_opts

func (arg1 SwigcptrColumnFamilyOptions) SetCompression_opts(arg2 CompressionOptions)

func (SwigcptrColumnFamilyOptions) SetCompression_per_level

func (SwigcptrColumnFamilyOptions) SetDisable_auto_compactions

func (arg1 SwigcptrColumnFamilyOptions) SetDisable_auto_compactions(arg2 bool)

func (SwigcptrColumnFamilyOptions) SetExpanded_compaction_factor

func (arg1 SwigcptrColumnFamilyOptions) SetExpanded_compaction_factor(arg2 int)

func (SwigcptrColumnFamilyOptions) SetFilter_deletes

func (arg1 SwigcptrColumnFamilyOptions) SetFilter_deletes(arg2 bool)

func (SwigcptrColumnFamilyOptions) SetHard_pending_compaction_bytes_limit

func (arg1 SwigcptrColumnFamilyOptions) SetHard_pending_compaction_bytes_limit(arg2 Uint64_t)

func (SwigcptrColumnFamilyOptions) SetHard_rate_limit

func (arg1 SwigcptrColumnFamilyOptions) SetHard_rate_limit(arg2 float64)

func (SwigcptrColumnFamilyOptions) SetInplace_callback

func (arg1 SwigcptrColumnFamilyOptions) SetInplace_callback(arg2 _swig_fnptr)

func (SwigcptrColumnFamilyOptions) SetInplace_update_num_locks

func (arg1 SwigcptrColumnFamilyOptions) SetInplace_update_num_locks(arg2 int64)

func (SwigcptrColumnFamilyOptions) SetInplace_update_support

func (arg1 SwigcptrColumnFamilyOptions) SetInplace_update_support(arg2 bool)

func (SwigcptrColumnFamilyOptions) SetLevel0_file_num_compaction_trigger

func (arg1 SwigcptrColumnFamilyOptions) SetLevel0_file_num_compaction_trigger(arg2 int)

func (SwigcptrColumnFamilyOptions) SetLevel0_slowdown_writes_trigger

func (arg1 SwigcptrColumnFamilyOptions) SetLevel0_slowdown_writes_trigger(arg2 int)

func (SwigcptrColumnFamilyOptions) SetLevel0_stop_writes_trigger

func (arg1 SwigcptrColumnFamilyOptions) SetLevel0_stop_writes_trigger(arg2 int)

func (SwigcptrColumnFamilyOptions) SetLevel_compaction_dynamic_level_bytes

func (arg1 SwigcptrColumnFamilyOptions) SetLevel_compaction_dynamic_level_bytes(arg2 bool)

func (SwigcptrColumnFamilyOptions) SetMax_bytes_for_level_base

func (arg1 SwigcptrColumnFamilyOptions) SetMax_bytes_for_level_base(arg2 Uint64_t)

func (SwigcptrColumnFamilyOptions) SetMax_bytes_for_level_multiplier

func (arg1 SwigcptrColumnFamilyOptions) SetMax_bytes_for_level_multiplier(arg2 int)

func (SwigcptrColumnFamilyOptions) SetMax_bytes_for_level_multiplier_additional

func (arg1 SwigcptrColumnFamilyOptions) SetMax_bytes_for_level_multiplier_additional(arg2 Std_vector_Sl_int_Sg_)

func (SwigcptrColumnFamilyOptions) SetMax_grandparent_overlap_factor

func (arg1 SwigcptrColumnFamilyOptions) SetMax_grandparent_overlap_factor(arg2 int)

func (SwigcptrColumnFamilyOptions) SetMax_mem_compaction_level

func (arg1 SwigcptrColumnFamilyOptions) SetMax_mem_compaction_level(arg2 int)

func (SwigcptrColumnFamilyOptions) SetMax_sequential_skip_in_iterations

func (arg1 SwigcptrColumnFamilyOptions) SetMax_sequential_skip_in_iterations(arg2 Uint64_t)

func (SwigcptrColumnFamilyOptions) SetMax_successive_merges

func (arg1 SwigcptrColumnFamilyOptions) SetMax_successive_merges(arg2 int64)

func (SwigcptrColumnFamilyOptions) SetMax_write_buffer_number

func (arg1 SwigcptrColumnFamilyOptions) SetMax_write_buffer_number(arg2 int)

func (SwigcptrColumnFamilyOptions) SetMax_write_buffer_number_to_maintain

func (arg1 SwigcptrColumnFamilyOptions) SetMax_write_buffer_number_to_maintain(arg2 int)

func (SwigcptrColumnFamilyOptions) SetMemtable_factory

func (SwigcptrColumnFamilyOptions) SetMemtable_prefix_bloom_bits

func (arg1 SwigcptrColumnFamilyOptions) SetMemtable_prefix_bloom_bits(arg2 Uint32_t)

func (SwigcptrColumnFamilyOptions) SetMemtable_prefix_bloom_huge_page_tlb_size

func (arg1 SwigcptrColumnFamilyOptions) SetMemtable_prefix_bloom_huge_page_tlb_size(arg2 int64)

func (SwigcptrColumnFamilyOptions) SetMemtable_prefix_bloom_probes

func (arg1 SwigcptrColumnFamilyOptions) SetMemtable_prefix_bloom_probes(arg2 Uint32_t)

func (SwigcptrColumnFamilyOptions) SetMerge_operator

func (SwigcptrColumnFamilyOptions) SetMin_partial_merge_operands

func (arg1 SwigcptrColumnFamilyOptions) SetMin_partial_merge_operands(arg2 Uint32_t)

func (SwigcptrColumnFamilyOptions) SetMin_write_buffer_number_to_merge

func (arg1 SwigcptrColumnFamilyOptions) SetMin_write_buffer_number_to_merge(arg2 int)

func (SwigcptrColumnFamilyOptions) SetNum_levels

func (arg1 SwigcptrColumnFamilyOptions) SetNum_levels(arg2 int)

func (SwigcptrColumnFamilyOptions) SetOptimize_filters_for_hits

func (arg1 SwigcptrColumnFamilyOptions) SetOptimize_filters_for_hits(arg2 bool)

func (SwigcptrColumnFamilyOptions) SetParanoid_file_checks

func (arg1 SwigcptrColumnFamilyOptions) SetParanoid_file_checks(arg2 bool)

func (SwigcptrColumnFamilyOptions) SetPrefix_extractor

func (SwigcptrColumnFamilyOptions) SetPurge_redundant_kvs_while_flush

func (arg1 SwigcptrColumnFamilyOptions) SetPurge_redundant_kvs_while_flush(arg2 bool)

func (SwigcptrColumnFamilyOptions) SetRate_limit_delay_max_milliseconds

func (arg1 SwigcptrColumnFamilyOptions) SetRate_limit_delay_max_milliseconds(arg2 uint)

func (SwigcptrColumnFamilyOptions) SetSoft_pending_compaction_bytes_limit

func (arg1 SwigcptrColumnFamilyOptions) SetSoft_pending_compaction_bytes_limit(arg2 Uint64_t)

func (SwigcptrColumnFamilyOptions) SetSoft_rate_limit

func (arg1 SwigcptrColumnFamilyOptions) SetSoft_rate_limit(arg2 float64)

func (SwigcptrColumnFamilyOptions) SetSource_compaction_factor

func (arg1 SwigcptrColumnFamilyOptions) SetSource_compaction_factor(arg2 int)

func (SwigcptrColumnFamilyOptions) SetTable_factory

func (SwigcptrColumnFamilyOptions) SetTable_properties_collector_factories

func (SwigcptrColumnFamilyOptions) SetTarget_file_size_base

func (arg1 SwigcptrColumnFamilyOptions) SetTarget_file_size_base(arg2 Uint64_t)

func (SwigcptrColumnFamilyOptions) SetTarget_file_size_multiplier

func (arg1 SwigcptrColumnFamilyOptions) SetTarget_file_size_multiplier(arg2 int)

func (SwigcptrColumnFamilyOptions) SetVerify_checksums_in_compaction

func (arg1 SwigcptrColumnFamilyOptions) SetVerify_checksums_in_compaction(arg2 bool)

func (SwigcptrColumnFamilyOptions) SetWrite_buffer_size

func (arg1 SwigcptrColumnFamilyOptions) SetWrite_buffer_size(arg2 int64)

func (SwigcptrColumnFamilyOptions) SwigIsColumnFamilyOptions

func (p SwigcptrColumnFamilyOptions) SwigIsColumnFamilyOptions()

func (SwigcptrColumnFamilyOptions) Swigcptr

func (p SwigcptrColumnFamilyOptions) Swigcptr() uintptr

type SwigcptrCompactRangeOptions

type SwigcptrCompactRangeOptions uintptr

func (SwigcptrCompactRangeOptions) GetBottommost_level_compaction

func (arg1 SwigcptrCompactRangeOptions) GetBottommost_level_compaction() (_swig_ret RocksdbBottommostLevelCompaction)

func (SwigcptrCompactRangeOptions) GetChange_level

func (arg1 SwigcptrCompactRangeOptions) GetChange_level() (_swig_ret bool)

func (SwigcptrCompactRangeOptions) GetExclusive_manual_compaction

func (arg1 SwigcptrCompactRangeOptions) GetExclusive_manual_compaction() (_swig_ret bool)

func (SwigcptrCompactRangeOptions) GetTarget_level

func (arg1 SwigcptrCompactRangeOptions) GetTarget_level() (_swig_ret int)

func (SwigcptrCompactRangeOptions) GetTarget_path_id

func (arg1 SwigcptrCompactRangeOptions) GetTarget_path_id() (_swig_ret Uint32_t)

func (SwigcptrCompactRangeOptions) SetBottommost_level_compaction

func (arg1 SwigcptrCompactRangeOptions) SetBottommost_level_compaction(arg2 RocksdbBottommostLevelCompaction)

func (SwigcptrCompactRangeOptions) SetChange_level

func (arg1 SwigcptrCompactRangeOptions) SetChange_level(arg2 bool)

func (SwigcptrCompactRangeOptions) SetExclusive_manual_compaction

func (arg1 SwigcptrCompactRangeOptions) SetExclusive_manual_compaction(arg2 bool)

func (SwigcptrCompactRangeOptions) SetTarget_level

func (arg1 SwigcptrCompactRangeOptions) SetTarget_level(arg2 int)

func (SwigcptrCompactRangeOptions) SetTarget_path_id

func (arg1 SwigcptrCompactRangeOptions) SetTarget_path_id(arg2 Uint32_t)

func (SwigcptrCompactRangeOptions) SwigIsCompactRangeOptions

func (p SwigcptrCompactRangeOptions) SwigIsCompactRangeOptions()

func (SwigcptrCompactRangeOptions) Swigcptr

func (p SwigcptrCompactRangeOptions) Swigcptr() uintptr

type SwigcptrCompactionOptions

type SwigcptrCompactionOptions uintptr

func (SwigcptrCompactionOptions) GetCompression

func (arg1 SwigcptrCompactionOptions) GetCompression() (_swig_ret RocksdbCompressionType)

func (SwigcptrCompactionOptions) GetOutput_file_size_limit

func (arg1 SwigcptrCompactionOptions) GetOutput_file_size_limit() (_swig_ret Uint64_t)

func (SwigcptrCompactionOptions) SetCompression

func (arg1 SwigcptrCompactionOptions) SetCompression(arg2 RocksdbCompressionType)

func (SwigcptrCompactionOptions) SetOutput_file_size_limit

func (arg1 SwigcptrCompactionOptions) SetOutput_file_size_limit(arg2 Uint64_t)

func (SwigcptrCompactionOptions) SwigIsCompactionOptions

func (p SwigcptrCompactionOptions) SwigIsCompactionOptions()

func (SwigcptrCompactionOptions) Swigcptr

func (p SwigcptrCompactionOptions) Swigcptr() uintptr

type SwigcptrCompactionOptionsFIFO

type SwigcptrCompactionOptionsFIFO uintptr

func (SwigcptrCompactionOptionsFIFO) GetMax_table_files_size

func (arg1 SwigcptrCompactionOptionsFIFO) GetMax_table_files_size() (_swig_ret Uint64_t)

func (SwigcptrCompactionOptionsFIFO) SetMax_table_files_size

func (arg1 SwigcptrCompactionOptionsFIFO) SetMax_table_files_size(arg2 Uint64_t)

func (SwigcptrCompactionOptionsFIFO) SwigIsCompactionOptionsFIFO

func (p SwigcptrCompactionOptionsFIFO) SwigIsCompactionOptionsFIFO()

func (SwigcptrCompactionOptionsFIFO) Swigcptr

type SwigcptrCompactionOptionsUniversal

type SwigcptrCompactionOptionsUniversal uintptr

func (SwigcptrCompactionOptionsUniversal) Swigcptr

type SwigcptrCompressionOptions

type SwigcptrCompressionOptions uintptr

func (SwigcptrCompressionOptions) GetLevel

func (arg1 SwigcptrCompressionOptions) GetLevel() (_swig_ret int)

func (SwigcptrCompressionOptions) GetStrategy

func (arg1 SwigcptrCompressionOptions) GetStrategy() (_swig_ret int)

func (SwigcptrCompressionOptions) GetWindow_bits

func (arg1 SwigcptrCompressionOptions) GetWindow_bits() (_swig_ret int)

func (SwigcptrCompressionOptions) SetLevel

func (arg1 SwigcptrCompressionOptions) SetLevel(arg2 int)

func (SwigcptrCompressionOptions) SetStrategy

func (arg1 SwigcptrCompressionOptions) SetStrategy(arg2 int)

func (SwigcptrCompressionOptions) SetWindow_bits

func (arg1 SwigcptrCompressionOptions) SetWindow_bits(arg2 int)

func (SwigcptrCompressionOptions) SwigIsCompressionOptions

func (p SwigcptrCompressionOptions) SwigIsCompressionOptions()

func (SwigcptrCompressionOptions) Swigcptr

func (p SwigcptrCompressionOptions) Swigcptr() uintptr

type SwigcptrDB

type SwigcptrDB uintptr

func (SwigcptrDB) AddFile

func (p SwigcptrDB) AddFile(a ...interface{}) Status

func (SwigcptrDB) AddFile__SWIG_0

func (arg1 SwigcptrDB) AddFile__SWIG_0(arg2 ColumnFamilyHandle, arg3 string, arg4 bool) (_swig_ret Status)

func (SwigcptrDB) AddFile__SWIG_1

func (arg1 SwigcptrDB) AddFile__SWIG_1(arg2 ColumnFamilyHandle, arg3 string) (_swig_ret Status)

func (SwigcptrDB) AddFile__SWIG_2

func (arg1 SwigcptrDB) AddFile__SWIG_2(arg2 string, arg3 bool) (_swig_ret Status)

func (SwigcptrDB) AddFile__SWIG_3

func (arg1 SwigcptrDB) AddFile__SWIG_3(arg2 string) (_swig_ret Status)

func (SwigcptrDB) AddFile__SWIG_4

func (arg1 SwigcptrDB) AddFile__SWIG_4(arg2 ColumnFamilyHandle, arg3 Rocksdb_ExternalSstFileInfo, arg4 bool) (_swig_ret Status)

func (SwigcptrDB) AddFile__SWIG_5

func (arg1 SwigcptrDB) AddFile__SWIG_5(arg2 ColumnFamilyHandle, arg3 Rocksdb_ExternalSstFileInfo) (_swig_ret Status)

func (SwigcptrDB) AddFile__SWIG_6

func (arg1 SwigcptrDB) AddFile__SWIG_6(arg2 Rocksdb_ExternalSstFileInfo, arg3 bool) (_swig_ret Status)

func (SwigcptrDB) AddFile__SWIG_7

func (arg1 SwigcptrDB) AddFile__SWIG_7(arg2 Rocksdb_ExternalSstFileInfo) (_swig_ret Status)

func (SwigcptrDB) CompactFiles

func (p SwigcptrDB) CompactFiles(a ...interface{}) Status

func (SwigcptrDB) CompactFiles__SWIG_0

func (arg1 SwigcptrDB) CompactFiles__SWIG_0(arg2 CompactionOptions, arg3 ColumnFamilyHandle, arg4 Std_vector_Sl_std_string_Sg_, arg5 int, arg6 int) (_swig_ret Status)

func (SwigcptrDB) CompactFiles__SWIG_1

func (arg1 SwigcptrDB) CompactFiles__SWIG_1(arg2 CompactionOptions, arg3 ColumnFamilyHandle, arg4 Std_vector_Sl_std_string_Sg_, arg5 int) (_swig_ret Status)

func (SwigcptrDB) CompactFiles__SWIG_2

func (arg1 SwigcptrDB) CompactFiles__SWIG_2(arg2 CompactionOptions, arg3 Std_vector_Sl_std_string_Sg_, arg4 int, arg5 int) (_swig_ret Status)

func (SwigcptrDB) CompactFiles__SWIG_3

func (arg1 SwigcptrDB) CompactFiles__SWIG_3(arg2 CompactionOptions, arg3 Std_vector_Sl_std_string_Sg_, arg4 int) (_swig_ret Status)

func (SwigcptrDB) CompactRange

func (p SwigcptrDB) CompactRange(a ...interface{}) Status

func (SwigcptrDB) CompactRange__SWIG_0

func (arg1 SwigcptrDB) CompactRange__SWIG_0(arg2 CompactRangeOptions, arg3 ColumnFamilyHandle, arg4 Slice, arg5 Slice) (_swig_ret Status)

func (SwigcptrDB) CompactRange__SWIG_1

func (arg1 SwigcptrDB) CompactRange__SWIG_1(arg2 CompactRangeOptions, arg3 Slice, arg4 Slice) (_swig_ret Status)

func (SwigcptrDB) CompactRange__SWIG_2

func (arg1 SwigcptrDB) CompactRange__SWIG_2(arg2 ColumnFamilyHandle, arg3 Slice, arg4 Slice, arg5 bool, arg6 int, arg7 Uint32_t) (_swig_ret Status)

func (SwigcptrDB) CompactRange__SWIG_3

func (arg1 SwigcptrDB) CompactRange__SWIG_3(arg2 ColumnFamilyHandle, arg3 Slice, arg4 Slice, arg5 bool, arg6 int) (_swig_ret Status)

func (SwigcptrDB) CompactRange__SWIG_4

func (arg1 SwigcptrDB) CompactRange__SWIG_4(arg2 ColumnFamilyHandle, arg3 Slice, arg4 Slice, arg5 bool) (_swig_ret Status)

func (SwigcptrDB) CompactRange__SWIG_5

func (arg1 SwigcptrDB) CompactRange__SWIG_5(arg2 ColumnFamilyHandle, arg3 Slice, arg4 Slice) (_swig_ret Status)

func (SwigcptrDB) CompactRange__SWIG_6

func (arg1 SwigcptrDB) CompactRange__SWIG_6(arg2 Slice, arg3 Slice, arg4 bool, arg5 int, arg6 Uint32_t) (_swig_ret Status)

func (SwigcptrDB) CompactRange__SWIG_7

func (arg1 SwigcptrDB) CompactRange__SWIG_7(arg2 Slice, arg3 Slice, arg4 bool, arg5 int) (_swig_ret Status)

func (SwigcptrDB) CompactRange__SWIG_8

func (arg1 SwigcptrDB) CompactRange__SWIG_8(arg2 Slice, arg3 Slice, arg4 bool) (_swig_ret Status)

func (SwigcptrDB) CompactRange__SWIG_9

func (arg1 SwigcptrDB) CompactRange__SWIG_9(arg2 Slice, arg3 Slice) (_swig_ret Status)

func (SwigcptrDB) ContinueBackgroundWork

func (arg1 SwigcptrDB) ContinueBackgroundWork() (_swig_ret Status)

func (SwigcptrDB) CreateColumnFamily

func (arg1 SwigcptrDB) CreateColumnFamily(arg2 ColumnFamilyOptions, arg3 string, arg4 ColumnFamilyHandle) (_swig_ret Status)

func (SwigcptrDB) DefaultColumnFamily

func (arg1 SwigcptrDB) DefaultColumnFamily() (_swig_ret ColumnFamilyHandle)

func (SwigcptrDB) Delete

func (p SwigcptrDB) Delete(a ...interface{}) Status

func (SwigcptrDB) DeleteFile

func (arg1 SwigcptrDB) DeleteFile(arg2 string) (_swig_ret Status)

func (SwigcptrDB) Delete__SWIG_0

func (arg1 SwigcptrDB) Delete__SWIG_0(arg2 WriteOptions, arg3 ColumnFamilyHandle, arg4 Slice) (_swig_ret Status)

func (SwigcptrDB) Delete__SWIG_1

func (arg1 SwigcptrDB) Delete__SWIG_1(arg2 WriteOptions, arg3 Slice) (_swig_ret Status)

func (SwigcptrDB) DisableFileDeletions

func (arg1 SwigcptrDB) DisableFileDeletions() (_swig_ret Status)

func (SwigcptrDB) DropColumnFamily

func (arg1 SwigcptrDB) DropColumnFamily(arg2 ColumnFamilyHandle) (_swig_ret Status)

func (SwigcptrDB) EnableAutoCompaction

func (arg1 SwigcptrDB) EnableAutoCompaction(arg2 Std_vector_Sl_rocksdb_ColumnFamilyHandle_Sm__Sg_) (_swig_ret Status)

func (SwigcptrDB) EnableFileDeletions

func (p SwigcptrDB) EnableFileDeletions(a ...interface{}) Status

func (SwigcptrDB) EnableFileDeletions__SWIG_0

func (arg1 SwigcptrDB) EnableFileDeletions__SWIG_0(arg2 bool) (_swig_ret Status)

func (SwigcptrDB) EnableFileDeletions__SWIG_1

func (arg1 SwigcptrDB) EnableFileDeletions__SWIG_1() (_swig_ret Status)

func (SwigcptrDB) Flush

func (p SwigcptrDB) Flush(a ...interface{}) Status

func (SwigcptrDB) Flush__SWIG_0

func (arg1 SwigcptrDB) Flush__SWIG_0(arg2 FlushOptions, arg3 ColumnFamilyHandle) (_swig_ret Status)

func (SwigcptrDB) Flush__SWIG_1

func (arg1 SwigcptrDB) Flush__SWIG_1(arg2 FlushOptions) (_swig_ret Status)

func (SwigcptrDB) Get

func (p SwigcptrDB) Get(a ...interface{}) Status

func (SwigcptrDB) GetAggregatedIntProperty

func (arg1 SwigcptrDB) GetAggregatedIntProperty(arg2 Slice, arg3 Uint64_t) (_swig_ret bool)

func (SwigcptrDB) GetApproximateSizes

func (p SwigcptrDB) GetApproximateSizes(a ...interface{})

func (SwigcptrDB) GetApproximateSizes__SWIG_0

func (arg1 SwigcptrDB) GetApproximateSizes__SWIG_0(arg2 ColumnFamilyHandle, arg3 Range, arg4 int, arg5 Uint64_t, arg6 bool)

func (SwigcptrDB) GetApproximateSizes__SWIG_1

func (arg1 SwigcptrDB) GetApproximateSizes__SWIG_1(arg2 ColumnFamilyHandle, arg3 Range, arg4 int, arg5 Uint64_t)

func (SwigcptrDB) GetApproximateSizes__SWIG_2

func (arg1 SwigcptrDB) GetApproximateSizes__SWIG_2(arg2 Range, arg3 int, arg4 Uint64_t, arg5 bool)

func (SwigcptrDB) GetApproximateSizes__SWIG_3

func (arg1 SwigcptrDB) GetApproximateSizes__SWIG_3(arg2 Range, arg3 int, arg4 Uint64_t)

func (SwigcptrDB) GetColumnFamilyMetaData

func (p SwigcptrDB) GetColumnFamilyMetaData(a ...interface{})

func (SwigcptrDB) GetColumnFamilyMetaData__SWIG_0

func (arg1 SwigcptrDB) GetColumnFamilyMetaData__SWIG_0(arg2 ColumnFamilyHandle, arg3 ColumnFamilyMetaData)

func (SwigcptrDB) GetColumnFamilyMetaData__SWIG_1

func (arg1 SwigcptrDB) GetColumnFamilyMetaData__SWIG_1(arg2 ColumnFamilyMetaData)

func (SwigcptrDB) GetDBOptions

func (arg1 SwigcptrDB) GetDBOptions() (_swig_ret DBOptions)

func (SwigcptrDB) GetDbIdentity

func (arg1 SwigcptrDB) GetDbIdentity(arg2 *string) (_swig_ret Status)

func (SwigcptrDB) GetEnv

func (arg1 SwigcptrDB) GetEnv() (_swig_ret Rocksdb_Env)

func (SwigcptrDB) GetIntProperty

func (p SwigcptrDB) GetIntProperty(a ...interface{}) bool

func (SwigcptrDB) GetIntProperty__SWIG_0

func (arg1 SwigcptrDB) GetIntProperty__SWIG_0(arg2 ColumnFamilyHandle, arg3 Slice, arg4 Uint64_t) (_swig_ret bool)

func (SwigcptrDB) GetIntProperty__SWIG_1

func (arg1 SwigcptrDB) GetIntProperty__SWIG_1(arg2 Slice, arg3 Uint64_t) (_swig_ret bool)

func (SwigcptrDB) GetLatestSequenceNumber

func (arg1 SwigcptrDB) GetLatestSequenceNumber() (_swig_ret SequenceNumber)

func (SwigcptrDB) GetLiveFiles

func (p SwigcptrDB) GetLiveFiles(a ...interface{}) Status

func (SwigcptrDB) GetLiveFilesMetaData

func (arg1 SwigcptrDB) GetLiveFilesMetaData(arg2 Std_vector_Sl_LiveFileMetaData_Sg_)

func (SwigcptrDB) GetLiveFiles__SWIG_0

func (arg1 SwigcptrDB) GetLiveFiles__SWIG_0(arg2 Std_vector_Sl_std_string_Sg_, arg3 Uint64_t, arg4 bool) (_swig_ret Status)

func (SwigcptrDB) GetLiveFiles__SWIG_1

func (arg1 SwigcptrDB) GetLiveFiles__SWIG_1(arg2 Std_vector_Sl_std_string_Sg_, arg3 Uint64_t) (_swig_ret Status)

func (SwigcptrDB) GetName

func (arg1 SwigcptrDB) GetName() (_swig_ret string)

func (SwigcptrDB) GetOptions

func (p SwigcptrDB) GetOptions(a ...interface{}) Options

func (SwigcptrDB) GetOptions__SWIG_0

func (arg1 SwigcptrDB) GetOptions__SWIG_0(arg2 ColumnFamilyHandle) (_swig_ret Options)

func (SwigcptrDB) GetOptions__SWIG_1

func (arg1 SwigcptrDB) GetOptions__SWIG_1() (_swig_ret Options)

func (SwigcptrDB) GetPropertiesOfAllTables

func (p SwigcptrDB) GetPropertiesOfAllTables(a ...interface{}) Status

func (SwigcptrDB) GetProperty

func (p SwigcptrDB) GetProperty(a ...interface{}) bool

func (SwigcptrDB) GetProperty__SWIG_0

func (arg1 SwigcptrDB) GetProperty__SWIG_0(arg2 ColumnFamilyHandle, arg3 Slice, arg4 *string) (_swig_ret bool)

func (SwigcptrDB) GetProperty__SWIG_1

func (arg1 SwigcptrDB) GetProperty__SWIG_1(arg2 Slice, arg3 *string) (_swig_ret bool)

func (SwigcptrDB) GetRootDB

func (arg1 SwigcptrDB) GetRootDB() (_swig_ret DB)

func (SwigcptrDB) GetSnapshot

func (arg1 SwigcptrDB) GetSnapshot() (_swig_ret Rocksdb_Snapshot)

func (SwigcptrDB) GetSortedWalFiles

func (arg1 SwigcptrDB) GetSortedWalFiles(arg2 VectorLogPtr) (_swig_ret Status)

func (SwigcptrDB) GetUpdatesSince

func (p SwigcptrDB) GetUpdatesSince(a ...interface{}) Status

func (SwigcptrDB) GetUpdatesSince__SWIG_0

func (arg1 SwigcptrDB) GetUpdatesSince__SWIG_0(arg2 SequenceNumber, arg3 Unique_ptr_Sl_TransactionLogIterator_Sg_, arg4 TransactionLogIterator_ReadOptions) (_swig_ret Status)

func (SwigcptrDB) GetUpdatesSince__SWIG_1

func (arg1 SwigcptrDB) GetUpdatesSince__SWIG_1(arg2 SequenceNumber, arg3 Unique_ptr_Sl_TransactionLogIterator_Sg_) (_swig_ret Status)

func (SwigcptrDB) Get__SWIG_0

func (arg1 SwigcptrDB) Get__SWIG_0(arg2 ReadOptions, arg3 ColumnFamilyHandle, arg4 Slice, arg5 *string) (_swig_ret Status)

func (SwigcptrDB) Get__SWIG_1

func (arg1 SwigcptrDB) Get__SWIG_1(arg2 ReadOptions, arg3 Slice, arg4 *string) (_swig_ret Status)

func (SwigcptrDB) KeyMayExist

func (p SwigcptrDB) KeyMayExist(a ...interface{}) bool

func (SwigcptrDB) KeyMayExist__SWIG_0

func (arg1 SwigcptrDB) KeyMayExist__SWIG_0(arg2 ReadOptions, arg3 ColumnFamilyHandle, arg4 Slice, arg5 *string, arg6 *bool) (_swig_ret bool)

func (SwigcptrDB) KeyMayExist__SWIG_1

func (arg1 SwigcptrDB) KeyMayExist__SWIG_1(arg2 ReadOptions, arg3 ColumnFamilyHandle, arg4 Slice, arg5 *string) (_swig_ret bool)

func (SwigcptrDB) KeyMayExist__SWIG_2

func (arg1 SwigcptrDB) KeyMayExist__SWIG_2(arg2 ReadOptions, arg3 Slice, arg4 *string, arg5 *bool) (_swig_ret bool)

func (SwigcptrDB) KeyMayExist__SWIG_3

func (arg1 SwigcptrDB) KeyMayExist__SWIG_3(arg2 ReadOptions, arg3 Slice, arg4 *string) (_swig_ret bool)

func (SwigcptrDB) Level0StopWriteTrigger

func (p SwigcptrDB) Level0StopWriteTrigger(a ...interface{}) int

func (SwigcptrDB) Level0StopWriteTrigger__SWIG_0

func (arg1 SwigcptrDB) Level0StopWriteTrigger__SWIG_0(arg2 ColumnFamilyHandle) (_swig_ret int)

func (SwigcptrDB) Level0StopWriteTrigger__SWIG_1

func (arg1 SwigcptrDB) Level0StopWriteTrigger__SWIG_1() (_swig_ret int)

func (SwigcptrDB) MaxMemCompactionLevel

func (p SwigcptrDB) MaxMemCompactionLevel(a ...interface{}) int

func (SwigcptrDB) MaxMemCompactionLevel__SWIG_0

func (arg1 SwigcptrDB) MaxMemCompactionLevel__SWIG_0(arg2 ColumnFamilyHandle) (_swig_ret int)

func (SwigcptrDB) MaxMemCompactionLevel__SWIG_1

func (arg1 SwigcptrDB) MaxMemCompactionLevel__SWIG_1() (_swig_ret int)

func (SwigcptrDB) Merge

func (p SwigcptrDB) Merge(a ...interface{}) Status

func (SwigcptrDB) Merge__SWIG_0

func (arg1 SwigcptrDB) Merge__SWIG_0(arg2 WriteOptions, arg3 ColumnFamilyHandle, arg4 Slice, arg5 Slice) (_swig_ret Status)

func (SwigcptrDB) Merge__SWIG_1

func (arg1 SwigcptrDB) Merge__SWIG_1(arg2 WriteOptions, arg3 Slice, arg4 Slice) (_swig_ret Status)

func (SwigcptrDB) MultiGet

func (p SwigcptrDB) MultiGet(a ...interface{}) Std_vector_Sl_rocksdb_Status_Sg_

func (SwigcptrDB) NewIterator

func (p SwigcptrDB) NewIterator(a ...interface{}) Iterator

func (SwigcptrDB) NewIterator__SWIG_0

func (arg1 SwigcptrDB) NewIterator__SWIG_0(arg2 ReadOptions, arg3 ColumnFamilyHandle) (_swig_ret Iterator)

func (SwigcptrDB) NewIterator__SWIG_1

func (arg1 SwigcptrDB) NewIterator__SWIG_1(arg2 ReadOptions) (_swig_ret Iterator)

func (SwigcptrDB) NewIterators

func (SwigcptrDB) NumberLevels

func (p SwigcptrDB) NumberLevels(a ...interface{}) int

func (SwigcptrDB) NumberLevels__SWIG_0

func (arg1 SwigcptrDB) NumberLevels__SWIG_0(arg2 ColumnFamilyHandle) (_swig_ret int)

func (SwigcptrDB) NumberLevels__SWIG_1

func (arg1 SwigcptrDB) NumberLevels__SWIG_1() (_swig_ret int)

func (SwigcptrDB) PauseBackgroundWork

func (arg1 SwigcptrDB) PauseBackgroundWork() (_swig_ret Status)

func (SwigcptrDB) Put

func (p SwigcptrDB) Put(a ...interface{}) Status

func (SwigcptrDB) Put__SWIG_0

func (arg1 SwigcptrDB) Put__SWIG_0(arg2 WriteOptions, arg3 ColumnFamilyHandle, arg4 Slice, arg5 Slice) (_swig_ret Status)

func (SwigcptrDB) Put__SWIG_1

func (arg1 SwigcptrDB) Put__SWIG_1(arg2 WriteOptions, arg3 Slice, arg4 Slice) (_swig_ret Status)

func (SwigcptrDB) ReleaseSnapshot

func (arg1 SwigcptrDB) ReleaseSnapshot(arg2 Rocksdb_Snapshot)

func (SwigcptrDB) SetOptions

func (p SwigcptrDB) SetOptions(a ...interface{}) Status

func (SwigcptrDB) SetOptions__SWIG_0

func (arg1 SwigcptrDB) SetOptions__SWIG_0(arg2 ColumnFamilyHandle, arg3 Std_unordered_map_Sl_std_string_Sc_std_string_Sg_) (_swig_ret Status)

func (SwigcptrDB) SetOptions__SWIG_1

func (arg1 SwigcptrDB) SetOptions__SWIG_1(arg2 Std_unordered_map_Sl_std_string_Sc_std_string_Sg_) (_swig_ret Status)

func (SwigcptrDB) SingleDelete

func (p SwigcptrDB) SingleDelete(a ...interface{}) Status

func (SwigcptrDB) SingleDelete__SWIG_0

func (arg1 SwigcptrDB) SingleDelete__SWIG_0(arg2 WriteOptions, arg3 ColumnFamilyHandle, arg4 Slice) (_swig_ret Status)

func (SwigcptrDB) SingleDelete__SWIG_1

func (arg1 SwigcptrDB) SingleDelete__SWIG_1(arg2 WriteOptions, arg3 Slice) (_swig_ret Status)

func (SwigcptrDB) SwigIsDB

func (p SwigcptrDB) SwigIsDB()

func (SwigcptrDB) Swigcptr

func (p SwigcptrDB) Swigcptr() uintptr

func (SwigcptrDB) SyncWAL

func (arg1 SwigcptrDB) SyncWAL() (_swig_ret Status)

func (SwigcptrDB) Write

func (arg1 SwigcptrDB) Write(arg2 WriteOptions, arg3 Rocksdb_WriteBatch) (_swig_ret Status)

type SwigcptrDBOptions

type SwigcptrDBOptions uintptr

func (SwigcptrDBOptions) Dump

func (arg1 SwigcptrDBOptions) Dump(arg2 Rocksdb_Logger)

func (SwigcptrDBOptions) GetAccess_hint_on_compaction_start

func (arg1 SwigcptrDBOptions) GetAccess_hint_on_compaction_start() (_swig_ret RocksdbDBOptionsAccessHint)

func (SwigcptrDBOptions) GetAdvise_random_on_open

func (arg1 SwigcptrDBOptions) GetAdvise_random_on_open() (_swig_ret bool)

func (SwigcptrDBOptions) GetAllow_concurrent_memtable_write

func (arg1 SwigcptrDBOptions) GetAllow_concurrent_memtable_write() (_swig_ret bool)

func (SwigcptrDBOptions) GetAllow_fallocate

func (arg1 SwigcptrDBOptions) GetAllow_fallocate() (_swig_ret bool)

func (SwigcptrDBOptions) GetAllow_mmap_reads

func (arg1 SwigcptrDBOptions) GetAllow_mmap_reads() (_swig_ret bool)

func (SwigcptrDBOptions) GetAllow_mmap_writes

func (arg1 SwigcptrDBOptions) GetAllow_mmap_writes() (_swig_ret bool)

func (SwigcptrDBOptions) GetAllow_os_buffer

func (arg1 SwigcptrDBOptions) GetAllow_os_buffer() (_swig_ret bool)

func (SwigcptrDBOptions) GetBase_background_compactions

func (arg1 SwigcptrDBOptions) GetBase_background_compactions() (_swig_ret int)

func (SwigcptrDBOptions) GetBytes_per_sync

func (arg1 SwigcptrDBOptions) GetBytes_per_sync() (_swig_ret Uint64_t)

func (SwigcptrDBOptions) GetCompaction_readahead_size

func (arg1 SwigcptrDBOptions) GetCompaction_readahead_size() (_swig_ret int64)

func (SwigcptrDBOptions) GetCreate_if_missing

func (arg1 SwigcptrDBOptions) GetCreate_if_missing() (_swig_ret bool)

func (SwigcptrDBOptions) GetCreate_missing_column_families

func (arg1 SwigcptrDBOptions) GetCreate_missing_column_families() (_swig_ret bool)

func (SwigcptrDBOptions) GetDb_log_dir

func (arg1 SwigcptrDBOptions) GetDb_log_dir() (_swig_ret string)

func (SwigcptrDBOptions) GetDb_paths

func (arg1 SwigcptrDBOptions) GetDb_paths() (_swig_ret Std_vector_Sl_rocksdb_DbPath_Sg_)

func (SwigcptrDBOptions) GetDb_write_buffer_size

func (arg1 SwigcptrDBOptions) GetDb_write_buffer_size() (_swig_ret int64)

func (SwigcptrDBOptions) GetDelayed_write_rate

func (arg1 SwigcptrDBOptions) GetDelayed_write_rate() (_swig_ret Uint64_t)

func (SwigcptrDBOptions) GetDelete_obsolete_files_period_micros

func (arg1 SwigcptrDBOptions) GetDelete_obsolete_files_period_micros() (_swig_ret Uint64_t)

func (SwigcptrDBOptions) GetDisableDataSync

func (arg1 SwigcptrDBOptions) GetDisableDataSync() (_swig_ret bool)

func (SwigcptrDBOptions) GetEnable_thread_tracking

func (arg1 SwigcptrDBOptions) GetEnable_thread_tracking() (_swig_ret bool)

func (SwigcptrDBOptions) GetEnable_write_thread_adaptive_yield

func (arg1 SwigcptrDBOptions) GetEnable_write_thread_adaptive_yield() (_swig_ret bool)

func (SwigcptrDBOptions) GetEnv

func (arg1 SwigcptrDBOptions) GetEnv() (_swig_ret Rocksdb_Env)

func (SwigcptrDBOptions) GetError_if_exists

func (arg1 SwigcptrDBOptions) GetError_if_exists() (_swig_ret bool)

func (SwigcptrDBOptions) GetFail_if_options_file_error

func (arg1 SwigcptrDBOptions) GetFail_if_options_file_error() (_swig_ret bool)

func (SwigcptrDBOptions) GetInfo_log

func (arg1 SwigcptrDBOptions) GetInfo_log() (_swig_ret Std_shared_ptr_Sl_rocksdb_Logger_Sg_)

func (SwigcptrDBOptions) GetInfo_log_level

func (arg1 SwigcptrDBOptions) GetInfo_log_level() (_swig_ret RocksdbInfoLogLevel)

func (SwigcptrDBOptions) GetIs_fd_close_on_exec

func (arg1 SwigcptrDBOptions) GetIs_fd_close_on_exec() (_swig_ret bool)

func (SwigcptrDBOptions) GetKeep_log_file_num

func (arg1 SwigcptrDBOptions) GetKeep_log_file_num() (_swig_ret int64)

func (SwigcptrDBOptions) GetListeners

func (SwigcptrDBOptions) GetLog_file_time_to_roll

func (arg1 SwigcptrDBOptions) GetLog_file_time_to_roll() (_swig_ret int64)

func (SwigcptrDBOptions) GetManifest_preallocation_size

func (arg1 SwigcptrDBOptions) GetManifest_preallocation_size() (_swig_ret int64)

func (SwigcptrDBOptions) GetMax_background_compactions

func (arg1 SwigcptrDBOptions) GetMax_background_compactions() (_swig_ret int)

func (SwigcptrDBOptions) GetMax_background_flushes

func (arg1 SwigcptrDBOptions) GetMax_background_flushes() (_swig_ret int)

func (SwigcptrDBOptions) GetMax_file_opening_threads

func (arg1 SwigcptrDBOptions) GetMax_file_opening_threads() (_swig_ret int)

func (SwigcptrDBOptions) GetMax_log_file_size

func (arg1 SwigcptrDBOptions) GetMax_log_file_size() (_swig_ret int64)

func (SwigcptrDBOptions) GetMax_manifest_file_size

func (arg1 SwigcptrDBOptions) GetMax_manifest_file_size() (_swig_ret Uint64_t)

func (SwigcptrDBOptions) GetMax_open_files

func (arg1 SwigcptrDBOptions) GetMax_open_files() (_swig_ret int)

func (SwigcptrDBOptions) GetMax_subcompactions

func (arg1 SwigcptrDBOptions) GetMax_subcompactions() (_swig_ret Uint32_t)

func (SwigcptrDBOptions) GetMax_total_wal_size

func (arg1 SwigcptrDBOptions) GetMax_total_wal_size() (_swig_ret Uint64_t)

func (SwigcptrDBOptions) GetNew_table_reader_for_compaction_inputs

func (arg1 SwigcptrDBOptions) GetNew_table_reader_for_compaction_inputs() (_swig_ret bool)

func (SwigcptrDBOptions) GetParanoid_checks

func (arg1 SwigcptrDBOptions) GetParanoid_checks() (_swig_ret bool)

func (SwigcptrDBOptions) GetRandom_access_max_buffer_size

func (arg1 SwigcptrDBOptions) GetRandom_access_max_buffer_size() (_swig_ret int64)

func (SwigcptrDBOptions) GetRate_limiter

func (arg1 SwigcptrDBOptions) GetRate_limiter() (_swig_ret Std_shared_ptr_Sl_rocksdb_RateLimiter_Sg_)

func (SwigcptrDBOptions) GetRecycle_log_file_num

func (arg1 SwigcptrDBOptions) GetRecycle_log_file_num() (_swig_ret int64)

func (SwigcptrDBOptions) GetRow_cache

func (arg1 SwigcptrDBOptions) GetRow_cache() (_swig_ret Std_shared_ptr_Sl_rocksdb_Cache_Sg_)

func (SwigcptrDBOptions) GetSkip_log_error_on_recovery

func (arg1 SwigcptrDBOptions) GetSkip_log_error_on_recovery() (_swig_ret bool)

func (SwigcptrDBOptions) GetSkip_stats_update_on_db_open

func (arg1 SwigcptrDBOptions) GetSkip_stats_update_on_db_open() (_swig_ret bool)

func (SwigcptrDBOptions) GetSst_file_manager

func (arg1 SwigcptrDBOptions) GetSst_file_manager() (_swig_ret Std_shared_ptr_Sl_rocksdb_SstFileManager_Sg_)

func (SwigcptrDBOptions) GetStatistics

func (arg1 SwigcptrDBOptions) GetStatistics() (_swig_ret Std_shared_ptr_Sl_rocksdb_Statistics_Sg_)

func (SwigcptrDBOptions) GetStats_dump_period_sec

func (arg1 SwigcptrDBOptions) GetStats_dump_period_sec() (_swig_ret uint)

func (SwigcptrDBOptions) GetTable_cache_numshardbits

func (arg1 SwigcptrDBOptions) GetTable_cache_numshardbits() (_swig_ret int)

func (SwigcptrDBOptions) GetUse_adaptive_mutex

func (arg1 SwigcptrDBOptions) GetUse_adaptive_mutex() (_swig_ret bool)

func (SwigcptrDBOptions) GetUse_fsync

func (arg1 SwigcptrDBOptions) GetUse_fsync() (_swig_ret bool)

func (SwigcptrDBOptions) GetWAL_size_limit_MB

func (arg1 SwigcptrDBOptions) GetWAL_size_limit_MB() (_swig_ret Uint64_t)

func (SwigcptrDBOptions) GetWAL_ttl_seconds

func (arg1 SwigcptrDBOptions) GetWAL_ttl_seconds() (_swig_ret Uint64_t)

func (SwigcptrDBOptions) GetWal_bytes_per_sync

func (arg1 SwigcptrDBOptions) GetWal_bytes_per_sync() (_swig_ret Uint64_t)

func (SwigcptrDBOptions) GetWal_dir

func (arg1 SwigcptrDBOptions) GetWal_dir() (_swig_ret string)

func (SwigcptrDBOptions) GetWal_filter

func (arg1 SwigcptrDBOptions) GetWal_filter() (_swig_ret Rocksdb_WalFilter)

func (SwigcptrDBOptions) GetWal_recovery_mode

func (arg1 SwigcptrDBOptions) GetWal_recovery_mode() (_swig_ret RocksdbWALRecoveryMode)

func (SwigcptrDBOptions) GetWritable_file_max_buffer_size

func (arg1 SwigcptrDBOptions) GetWritable_file_max_buffer_size() (_swig_ret int64)

func (SwigcptrDBOptions) GetWrite_thread_max_yield_usec

func (arg1 SwigcptrDBOptions) GetWrite_thread_max_yield_usec() (_swig_ret Uint64_t)

func (SwigcptrDBOptions) GetWrite_thread_slow_yield_usec

func (arg1 SwigcptrDBOptions) GetWrite_thread_slow_yield_usec() (_swig_ret Uint64_t)

func (SwigcptrDBOptions) IncreaseParallelism

func (p SwigcptrDBOptions) IncreaseParallelism(a ...interface{}) DBOptions

func (SwigcptrDBOptions) IncreaseParallelism__SWIG_0

func (arg1 SwigcptrDBOptions) IncreaseParallelism__SWIG_0(arg2 int) (_swig_ret DBOptions)

func (SwigcptrDBOptions) IncreaseParallelism__SWIG_1

func (arg1 SwigcptrDBOptions) IncreaseParallelism__SWIG_1() (_swig_ret DBOptions)

func (SwigcptrDBOptions) SetAccess_hint_on_compaction_start

func (arg1 SwigcptrDBOptions) SetAccess_hint_on_compaction_start(arg2 RocksdbDBOptionsAccessHint)

func (SwigcptrDBOptions) SetAdvise_random_on_open

func (arg1 SwigcptrDBOptions) SetAdvise_random_on_open(arg2 bool)

func (SwigcptrDBOptions) SetAllow_concurrent_memtable_write

func (arg1 SwigcptrDBOptions) SetAllow_concurrent_memtable_write(arg2 bool)

func (SwigcptrDBOptions) SetAllow_fallocate

func (arg1 SwigcptrDBOptions) SetAllow_fallocate(arg2 bool)

func (SwigcptrDBOptions) SetAllow_mmap_reads

func (arg1 SwigcptrDBOptions) SetAllow_mmap_reads(arg2 bool)

func (SwigcptrDBOptions) SetAllow_mmap_writes

func (arg1 SwigcptrDBOptions) SetAllow_mmap_writes(arg2 bool)

func (SwigcptrDBOptions) SetAllow_os_buffer

func (arg1 SwigcptrDBOptions) SetAllow_os_buffer(arg2 bool)

func (SwigcptrDBOptions) SetBase_background_compactions

func (arg1 SwigcptrDBOptions) SetBase_background_compactions(arg2 int)

func (SwigcptrDBOptions) SetBytes_per_sync

func (arg1 SwigcptrDBOptions) SetBytes_per_sync(arg2 Uint64_t)

func (SwigcptrDBOptions) SetCompaction_readahead_size

func (arg1 SwigcptrDBOptions) SetCompaction_readahead_size(arg2 int64)

func (SwigcptrDBOptions) SetCreate_if_missing

func (arg1 SwigcptrDBOptions) SetCreate_if_missing(arg2 bool)

func (SwigcptrDBOptions) SetCreate_missing_column_families

func (arg1 SwigcptrDBOptions) SetCreate_missing_column_families(arg2 bool)

func (SwigcptrDBOptions) SetDb_log_dir

func (arg1 SwigcptrDBOptions) SetDb_log_dir(arg2 string)

func (SwigcptrDBOptions) SetDb_paths

func (arg1 SwigcptrDBOptions) SetDb_paths(arg2 Std_vector_Sl_rocksdb_DbPath_Sg_)

func (SwigcptrDBOptions) SetDb_write_buffer_size

func (arg1 SwigcptrDBOptions) SetDb_write_buffer_size(arg2 int64)

func (SwigcptrDBOptions) SetDelayed_write_rate

func (arg1 SwigcptrDBOptions) SetDelayed_write_rate(arg2 Uint64_t)

func (SwigcptrDBOptions) SetDelete_obsolete_files_period_micros

func (arg1 SwigcptrDBOptions) SetDelete_obsolete_files_period_micros(arg2 Uint64_t)

func (SwigcptrDBOptions) SetDisableDataSync

func (arg1 SwigcptrDBOptions) SetDisableDataSync(arg2 bool)

func (SwigcptrDBOptions) SetEnable_thread_tracking

func (arg1 SwigcptrDBOptions) SetEnable_thread_tracking(arg2 bool)

func (SwigcptrDBOptions) SetEnable_write_thread_adaptive_yield

func (arg1 SwigcptrDBOptions) SetEnable_write_thread_adaptive_yield(arg2 bool)

func (SwigcptrDBOptions) SetEnv

func (arg1 SwigcptrDBOptions) SetEnv(arg2 Rocksdb_Env)

func (SwigcptrDBOptions) SetError_if_exists

func (arg1 SwigcptrDBOptions) SetError_if_exists(arg2 bool)

func (SwigcptrDBOptions) SetFail_if_options_file_error

func (arg1 SwigcptrDBOptions) SetFail_if_options_file_error(arg2 bool)

func (SwigcptrDBOptions) SetInfo_log

func (SwigcptrDBOptions) SetInfo_log_level

func (arg1 SwigcptrDBOptions) SetInfo_log_level(arg2 RocksdbInfoLogLevel)

func (SwigcptrDBOptions) SetIs_fd_close_on_exec

func (arg1 SwigcptrDBOptions) SetIs_fd_close_on_exec(arg2 bool)

func (SwigcptrDBOptions) SetKeep_log_file_num

func (arg1 SwigcptrDBOptions) SetKeep_log_file_num(arg2 int64)

func (SwigcptrDBOptions) SetListeners

func (SwigcptrDBOptions) SetLog_file_time_to_roll

func (arg1 SwigcptrDBOptions) SetLog_file_time_to_roll(arg2 int64)

func (SwigcptrDBOptions) SetManifest_preallocation_size

func (arg1 SwigcptrDBOptions) SetManifest_preallocation_size(arg2 int64)

func (SwigcptrDBOptions) SetMax_background_compactions

func (arg1 SwigcptrDBOptions) SetMax_background_compactions(arg2 int)

func (SwigcptrDBOptions) SetMax_background_flushes

func (arg1 SwigcptrDBOptions) SetMax_background_flushes(arg2 int)

func (SwigcptrDBOptions) SetMax_file_opening_threads

func (arg1 SwigcptrDBOptions) SetMax_file_opening_threads(arg2 int)

func (SwigcptrDBOptions) SetMax_log_file_size

func (arg1 SwigcptrDBOptions) SetMax_log_file_size(arg2 int64)

func (SwigcptrDBOptions) SetMax_manifest_file_size

func (arg1 SwigcptrDBOptions) SetMax_manifest_file_size(arg2 Uint64_t)

func (SwigcptrDBOptions) SetMax_open_files

func (arg1 SwigcptrDBOptions) SetMax_open_files(arg2 int)

func (SwigcptrDBOptions) SetMax_subcompactions

func (arg1 SwigcptrDBOptions) SetMax_subcompactions(arg2 Uint32_t)

func (SwigcptrDBOptions) SetMax_total_wal_size

func (arg1 SwigcptrDBOptions) SetMax_total_wal_size(arg2 Uint64_t)

func (SwigcptrDBOptions) SetNew_table_reader_for_compaction_inputs

func (arg1 SwigcptrDBOptions) SetNew_table_reader_for_compaction_inputs(arg2 bool)

func (SwigcptrDBOptions) SetParanoid_checks

func (arg1 SwigcptrDBOptions) SetParanoid_checks(arg2 bool)

func (SwigcptrDBOptions) SetRandom_access_max_buffer_size

func (arg1 SwigcptrDBOptions) SetRandom_access_max_buffer_size(arg2 int64)

func (SwigcptrDBOptions) SetRate_limiter

func (SwigcptrDBOptions) SetRecycle_log_file_num

func (arg1 SwigcptrDBOptions) SetRecycle_log_file_num(arg2 int64)

func (SwigcptrDBOptions) SetRow_cache

func (SwigcptrDBOptions) SetSkip_log_error_on_recovery

func (arg1 SwigcptrDBOptions) SetSkip_log_error_on_recovery(arg2 bool)

func (SwigcptrDBOptions) SetSkip_stats_update_on_db_open

func (arg1 SwigcptrDBOptions) SetSkip_stats_update_on_db_open(arg2 bool)

func (SwigcptrDBOptions) SetSst_file_manager

func (arg1 SwigcptrDBOptions) SetSst_file_manager(arg2 Std_shared_ptr_Sl_rocksdb_SstFileManager_Sg_)

func (SwigcptrDBOptions) SetStatistics

func (SwigcptrDBOptions) SetStats_dump_period_sec

func (arg1 SwigcptrDBOptions) SetStats_dump_period_sec(arg2 uint)

func (SwigcptrDBOptions) SetTable_cache_numshardbits

func (arg1 SwigcptrDBOptions) SetTable_cache_numshardbits(arg2 int)

func (SwigcptrDBOptions) SetUse_adaptive_mutex

func (arg1 SwigcptrDBOptions) SetUse_adaptive_mutex(arg2 bool)

func (SwigcptrDBOptions) SetUse_fsync

func (arg1 SwigcptrDBOptions) SetUse_fsync(arg2 bool)

func (SwigcptrDBOptions) SetWAL_size_limit_MB

func (arg1 SwigcptrDBOptions) SetWAL_size_limit_MB(arg2 Uint64_t)

func (SwigcptrDBOptions) SetWAL_ttl_seconds

func (arg1 SwigcptrDBOptions) SetWAL_ttl_seconds(arg2 Uint64_t)

func (SwigcptrDBOptions) SetWal_bytes_per_sync

func (arg1 SwigcptrDBOptions) SetWal_bytes_per_sync(arg2 Uint64_t)

func (SwigcptrDBOptions) SetWal_dir

func (arg1 SwigcptrDBOptions) SetWal_dir(arg2 string)

func (SwigcptrDBOptions) SetWal_filter

func (arg1 SwigcptrDBOptions) SetWal_filter(arg2 Rocksdb_WalFilter)

func (SwigcptrDBOptions) SetWal_recovery_mode

func (arg1 SwigcptrDBOptions) SetWal_recovery_mode(arg2 RocksdbWALRecoveryMode)

func (SwigcptrDBOptions) SetWritable_file_max_buffer_size

func (arg1 SwigcptrDBOptions) SetWritable_file_max_buffer_size(arg2 int64)

func (SwigcptrDBOptions) SetWrite_thread_max_yield_usec

func (arg1 SwigcptrDBOptions) SetWrite_thread_max_yield_usec(arg2 Uint64_t)

func (SwigcptrDBOptions) SetWrite_thread_slow_yield_usec

func (arg1 SwigcptrDBOptions) SetWrite_thread_slow_yield_usec(arg2 Uint64_t)

func (SwigcptrDBOptions) SwigIsDBOptions

func (p SwigcptrDBOptions) SwigIsDBOptions()

func (SwigcptrDBOptions) Swigcptr

func (p SwigcptrDBOptions) Swigcptr() uintptr

type SwigcptrDbPath

type SwigcptrDbPath uintptr

func (SwigcptrDbPath) GetPath

func (arg1 SwigcptrDbPath) GetPath() (_swig_ret string)

func (SwigcptrDbPath) GetTarget_size

func (arg1 SwigcptrDbPath) GetTarget_size() (_swig_ret Uint64_t)

func (SwigcptrDbPath) SetPath

func (arg1 SwigcptrDbPath) SetPath(arg2 string)

func (SwigcptrDbPath) SetTarget_size

func (arg1 SwigcptrDbPath) SetTarget_size(arg2 Uint64_t)

func (SwigcptrDbPath) SwigIsDbPath

func (p SwigcptrDbPath) SwigIsDbPath()

func (SwigcptrDbPath) Swigcptr

func (p SwigcptrDbPath) Swigcptr() uintptr

type SwigcptrFlushOptions

type SwigcptrFlushOptions uintptr

func (SwigcptrFlushOptions) GetWait

func (arg1 SwigcptrFlushOptions) GetWait() (_swig_ret bool)

func (SwigcptrFlushOptions) SetWait

func (arg1 SwigcptrFlushOptions) SetWait(arg2 bool)

func (SwigcptrFlushOptions) SwigIsFlushOptions

func (p SwigcptrFlushOptions) SwigIsFlushOptions()

func (SwigcptrFlushOptions) Swigcptr

func (p SwigcptrFlushOptions) Swigcptr() uintptr

type SwigcptrIterator

type SwigcptrIterator uintptr

func (SwigcptrIterator) Swigcptr

func (p SwigcptrIterator) Swigcptr() uintptr

type SwigcptrOptions

type SwigcptrOptions uintptr

func (SwigcptrOptions) Dump

func (arg1 SwigcptrOptions) Dump(arg2 Rocksdb_Logger)

func (SwigcptrOptions) DumpCFOptions

func (arg1 SwigcptrOptions) DumpCFOptions(arg2 Rocksdb_Logger)

func (SwigcptrOptions) GetAccess_hint_on_compaction_start

func (_swig_base SwigcptrOptions) GetAccess_hint_on_compaction_start() (_swig_ret RocksdbDBOptionsAccessHint)

func (SwigcptrOptions) GetAdvise_random_on_open

func (_swig_base SwigcptrOptions) GetAdvise_random_on_open() (_swig_ret bool)

func (SwigcptrOptions) GetAllow_concurrent_memtable_write

func (_swig_base SwigcptrOptions) GetAllow_concurrent_memtable_write() (_swig_ret bool)

func (SwigcptrOptions) GetAllow_fallocate

func (_swig_base SwigcptrOptions) GetAllow_fallocate() (_swig_ret bool)

func (SwigcptrOptions) GetAllow_mmap_reads

func (_swig_base SwigcptrOptions) GetAllow_mmap_reads() (_swig_ret bool)

func (SwigcptrOptions) GetAllow_mmap_writes

func (_swig_base SwigcptrOptions) GetAllow_mmap_writes() (_swig_ret bool)

func (SwigcptrOptions) GetAllow_os_buffer

func (_swig_base SwigcptrOptions) GetAllow_os_buffer() (_swig_ret bool)

func (SwigcptrOptions) GetArena_block_size

func (_swig_base SwigcptrOptions) GetArena_block_size() (_swig_ret int64)

func (SwigcptrOptions) GetBase_background_compactions

func (_swig_base SwigcptrOptions) GetBase_background_compactions() (_swig_ret int)

func (SwigcptrOptions) GetBloom_locality

func (_swig_base SwigcptrOptions) GetBloom_locality() (_swig_ret Uint32_t)

func (SwigcptrOptions) GetBytes_per_sync

func (_swig_base SwigcptrOptions) GetBytes_per_sync() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetCompaction_filter

func (_swig_base SwigcptrOptions) GetCompaction_filter() (_swig_ret Rocksdb_CompactionFilter)

func (SwigcptrOptions) GetCompaction_filter_factory

func (_swig_base SwigcptrOptions) GetCompaction_filter_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_)

func (SwigcptrOptions) GetCompaction_measure_io_stats

func (_swig_base SwigcptrOptions) GetCompaction_measure_io_stats() (_swig_ret bool)

func (SwigcptrOptions) GetCompaction_options_fifo

func (_swig_base SwigcptrOptions) GetCompaction_options_fifo() (_swig_ret CompactionOptionsFIFO)

func (SwigcptrOptions) GetCompaction_options_universal

func (_swig_base SwigcptrOptions) GetCompaction_options_universal() (_swig_ret CompactionOptionsUniversal)

func (SwigcptrOptions) GetCompaction_pri

func (_swig_base SwigcptrOptions) GetCompaction_pri() (_swig_ret RocksdbCompactionPri)

func (SwigcptrOptions) GetCompaction_readahead_size

func (_swig_base SwigcptrOptions) GetCompaction_readahead_size() (_swig_ret int64)

func (SwigcptrOptions) GetCompaction_style

func (_swig_base SwigcptrOptions) GetCompaction_style() (_swig_ret RocksdbCompactionStyle)

func (SwigcptrOptions) GetComparator

func (_swig_base SwigcptrOptions) GetComparator() (_swig_ret Rocksdb_Comparator)

func (SwigcptrOptions) GetCompression

func (_swig_base SwigcptrOptions) GetCompression() (_swig_ret RocksdbCompressionType)

func (SwigcptrOptions) GetCompression_opts

func (_swig_base SwigcptrOptions) GetCompression_opts() (_swig_ret CompressionOptions)

func (SwigcptrOptions) GetCompression_per_level

func (_swig_base SwigcptrOptions) GetCompression_per_level() (_swig_ret Std_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_)

func (SwigcptrOptions) GetCreate_if_missing

func (_swig_base SwigcptrOptions) GetCreate_if_missing() (_swig_ret bool)

func (SwigcptrOptions) GetCreate_missing_column_families

func (_swig_base SwigcptrOptions) GetCreate_missing_column_families() (_swig_ret bool)

func (SwigcptrOptions) GetDb_log_dir

func (_swig_base SwigcptrOptions) GetDb_log_dir() (_swig_ret string)

func (SwigcptrOptions) GetDb_paths

func (_swig_base SwigcptrOptions) GetDb_paths() (_swig_ret Std_vector_Sl_rocksdb_DbPath_Sg_)

func (SwigcptrOptions) GetDb_write_buffer_size

func (_swig_base SwigcptrOptions) GetDb_write_buffer_size() (_swig_ret int64)

func (SwigcptrOptions) GetDelayed_write_rate

func (_swig_base SwigcptrOptions) GetDelayed_write_rate() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetDelete_obsolete_files_period_micros

func (_swig_base SwigcptrOptions) GetDelete_obsolete_files_period_micros() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetDisableDataSync

func (_swig_base SwigcptrOptions) GetDisableDataSync() (_swig_ret bool)

func (SwigcptrOptions) GetDisable_auto_compactions

func (_swig_base SwigcptrOptions) GetDisable_auto_compactions() (_swig_ret bool)

func (SwigcptrOptions) GetEnable_thread_tracking

func (_swig_base SwigcptrOptions) GetEnable_thread_tracking() (_swig_ret bool)

func (SwigcptrOptions) GetEnable_write_thread_adaptive_yield

func (_swig_base SwigcptrOptions) GetEnable_write_thread_adaptive_yield() (_swig_ret bool)

func (SwigcptrOptions) GetEnv

func (_swig_base SwigcptrOptions) GetEnv() (_swig_ret Rocksdb_Env)

func (SwigcptrOptions) GetError_if_exists

func (_swig_base SwigcptrOptions) GetError_if_exists() (_swig_ret bool)

func (SwigcptrOptions) GetExpanded_compaction_factor

func (_swig_base SwigcptrOptions) GetExpanded_compaction_factor() (_swig_ret int)

func (SwigcptrOptions) GetFail_if_options_file_error

func (_swig_base SwigcptrOptions) GetFail_if_options_file_error() (_swig_ret bool)

func (SwigcptrOptions) GetFilter_deletes

func (_swig_base SwigcptrOptions) GetFilter_deletes() (_swig_ret bool)

func (SwigcptrOptions) GetHard_pending_compaction_bytes_limit

func (_swig_base SwigcptrOptions) GetHard_pending_compaction_bytes_limit() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetHard_rate_limit

func (_swig_base SwigcptrOptions) GetHard_rate_limit() (_swig_ret float64)

func (SwigcptrOptions) GetInfo_log

func (_swig_base SwigcptrOptions) GetInfo_log() (_swig_ret Std_shared_ptr_Sl_rocksdb_Logger_Sg_)

func (SwigcptrOptions) GetInfo_log_level

func (_swig_base SwigcptrOptions) GetInfo_log_level() (_swig_ret RocksdbInfoLogLevel)

func (SwigcptrOptions) GetInplace_callback

func (_swig_base SwigcptrOptions) GetInplace_callback() (_swig_ret _swig_fnptr)

func (SwigcptrOptions) GetInplace_update_num_locks

func (_swig_base SwigcptrOptions) GetInplace_update_num_locks() (_swig_ret int64)

func (SwigcptrOptions) GetInplace_update_support

func (_swig_base SwigcptrOptions) GetInplace_update_support() (_swig_ret bool)

func (SwigcptrOptions) GetIs_fd_close_on_exec

func (_swig_base SwigcptrOptions) GetIs_fd_close_on_exec() (_swig_ret bool)

func (SwigcptrOptions) GetKeep_log_file_num

func (_swig_base SwigcptrOptions) GetKeep_log_file_num() (_swig_ret int64)

func (SwigcptrOptions) GetLevel0_file_num_compaction_trigger

func (_swig_base SwigcptrOptions) GetLevel0_file_num_compaction_trigger() (_swig_ret int)

func (SwigcptrOptions) GetLevel0_slowdown_writes_trigger

func (_swig_base SwigcptrOptions) GetLevel0_slowdown_writes_trigger() (_swig_ret int)

func (SwigcptrOptions) GetLevel0_stop_writes_trigger

func (_swig_base SwigcptrOptions) GetLevel0_stop_writes_trigger() (_swig_ret int)

func (SwigcptrOptions) GetLevel_compaction_dynamic_level_bytes

func (_swig_base SwigcptrOptions) GetLevel_compaction_dynamic_level_bytes() (_swig_ret bool)

func (SwigcptrOptions) GetListeners

func (_swig_base SwigcptrOptions) GetListeners() (_swig_ret Std_vector_Sl_std_shared_ptr_Sl_EventListener_Sg__Sg_)

func (SwigcptrOptions) GetLog_file_time_to_roll

func (_swig_base SwigcptrOptions) GetLog_file_time_to_roll() (_swig_ret int64)

func (SwigcptrOptions) GetManifest_preallocation_size

func (_swig_base SwigcptrOptions) GetManifest_preallocation_size() (_swig_ret int64)

func (SwigcptrOptions) GetMax_background_compactions

func (_swig_base SwigcptrOptions) GetMax_background_compactions() (_swig_ret int)

func (SwigcptrOptions) GetMax_background_flushes

func (_swig_base SwigcptrOptions) GetMax_background_flushes() (_swig_ret int)

func (SwigcptrOptions) GetMax_bytes_for_level_base

func (_swig_base SwigcptrOptions) GetMax_bytes_for_level_base() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetMax_bytes_for_level_multiplier

func (_swig_base SwigcptrOptions) GetMax_bytes_for_level_multiplier() (_swig_ret int)

func (SwigcptrOptions) GetMax_bytes_for_level_multiplier_additional

func (_swig_base SwigcptrOptions) GetMax_bytes_for_level_multiplier_additional() (_swig_ret Std_vector_Sl_int_Sg_)

func (SwigcptrOptions) GetMax_file_opening_threads

func (_swig_base SwigcptrOptions) GetMax_file_opening_threads() (_swig_ret int)

func (SwigcptrOptions) GetMax_grandparent_overlap_factor

func (_swig_base SwigcptrOptions) GetMax_grandparent_overlap_factor() (_swig_ret int)

func (SwigcptrOptions) GetMax_log_file_size

func (_swig_base SwigcptrOptions) GetMax_log_file_size() (_swig_ret int64)

func (SwigcptrOptions) GetMax_manifest_file_size

func (_swig_base SwigcptrOptions) GetMax_manifest_file_size() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetMax_mem_compaction_level

func (_swig_base SwigcptrOptions) GetMax_mem_compaction_level() (_swig_ret int)

func (SwigcptrOptions) GetMax_open_files

func (_swig_base SwigcptrOptions) GetMax_open_files() (_swig_ret int)

func (SwigcptrOptions) GetMax_sequential_skip_in_iterations

func (_swig_base SwigcptrOptions) GetMax_sequential_skip_in_iterations() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetMax_subcompactions

func (_swig_base SwigcptrOptions) GetMax_subcompactions() (_swig_ret Uint32_t)

func (SwigcptrOptions) GetMax_successive_merges

func (_swig_base SwigcptrOptions) GetMax_successive_merges() (_swig_ret int64)

func (SwigcptrOptions) GetMax_total_wal_size

func (_swig_base SwigcptrOptions) GetMax_total_wal_size() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetMax_write_buffer_number

func (_swig_base SwigcptrOptions) GetMax_write_buffer_number() (_swig_ret int)

func (SwigcptrOptions) GetMax_write_buffer_number_to_maintain

func (_swig_base SwigcptrOptions) GetMax_write_buffer_number_to_maintain() (_swig_ret int)

func (SwigcptrOptions) GetMemtable_factory

func (_swig_base SwigcptrOptions) GetMemtable_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_)

func (SwigcptrOptions) GetMemtable_prefix_bloom_bits

func (_swig_base SwigcptrOptions) GetMemtable_prefix_bloom_bits() (_swig_ret Uint32_t)

func (SwigcptrOptions) GetMemtable_prefix_bloom_huge_page_tlb_size

func (_swig_base SwigcptrOptions) GetMemtable_prefix_bloom_huge_page_tlb_size() (_swig_ret int64)

func (SwigcptrOptions) GetMemtable_prefix_bloom_probes

func (_swig_base SwigcptrOptions) GetMemtable_prefix_bloom_probes() (_swig_ret Uint32_t)

func (SwigcptrOptions) GetMerge_operator

func (_swig_base SwigcptrOptions) GetMerge_operator() (_swig_ret Std_shared_ptr_Sl_rocksdb_MergeOperator_Sg_)

func (SwigcptrOptions) GetMin_partial_merge_operands

func (_swig_base SwigcptrOptions) GetMin_partial_merge_operands() (_swig_ret Uint32_t)

func (SwigcptrOptions) GetMin_write_buffer_number_to_merge

func (_swig_base SwigcptrOptions) GetMin_write_buffer_number_to_merge() (_swig_ret int)

func (SwigcptrOptions) GetNew_table_reader_for_compaction_inputs

func (_swig_base SwigcptrOptions) GetNew_table_reader_for_compaction_inputs() (_swig_ret bool)

func (SwigcptrOptions) GetNum_levels

func (_swig_base SwigcptrOptions) GetNum_levels() (_swig_ret int)

func (SwigcptrOptions) GetOptimize_filters_for_hits

func (_swig_base SwigcptrOptions) GetOptimize_filters_for_hits() (_swig_ret bool)

func (SwigcptrOptions) GetParanoid_checks

func (_swig_base SwigcptrOptions) GetParanoid_checks() (_swig_ret bool)

func (SwigcptrOptions) GetParanoid_file_checks

func (_swig_base SwigcptrOptions) GetParanoid_file_checks() (_swig_ret bool)

func (SwigcptrOptions) GetPrefix_extractor

func (_swig_base SwigcptrOptions) GetPrefix_extractor() (_swig_ret Std_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_)

func (SwigcptrOptions) GetPurge_redundant_kvs_while_flush

func (_swig_base SwigcptrOptions) GetPurge_redundant_kvs_while_flush() (_swig_ret bool)

func (SwigcptrOptions) GetRandom_access_max_buffer_size

func (_swig_base SwigcptrOptions) GetRandom_access_max_buffer_size() (_swig_ret int64)

func (SwigcptrOptions) GetRate_limit_delay_max_milliseconds

func (_swig_base SwigcptrOptions) GetRate_limit_delay_max_milliseconds() (_swig_ret uint)

func (SwigcptrOptions) GetRate_limiter

func (_swig_base SwigcptrOptions) GetRate_limiter() (_swig_ret Std_shared_ptr_Sl_rocksdb_RateLimiter_Sg_)

func (SwigcptrOptions) GetRecycle_log_file_num

func (_swig_base SwigcptrOptions) GetRecycle_log_file_num() (_swig_ret int64)

func (SwigcptrOptions) GetRow_cache

func (_swig_base SwigcptrOptions) GetRow_cache() (_swig_ret Std_shared_ptr_Sl_rocksdb_Cache_Sg_)

func (SwigcptrOptions) GetSkip_log_error_on_recovery

func (_swig_base SwigcptrOptions) GetSkip_log_error_on_recovery() (_swig_ret bool)

func (SwigcptrOptions) GetSkip_stats_update_on_db_open

func (_swig_base SwigcptrOptions) GetSkip_stats_update_on_db_open() (_swig_ret bool)

func (SwigcptrOptions) GetSoft_pending_compaction_bytes_limit

func (_swig_base SwigcptrOptions) GetSoft_pending_compaction_bytes_limit() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetSoft_rate_limit

func (_swig_base SwigcptrOptions) GetSoft_rate_limit() (_swig_ret float64)

func (SwigcptrOptions) GetSource_compaction_factor

func (_swig_base SwigcptrOptions) GetSource_compaction_factor() (_swig_ret int)

func (SwigcptrOptions) GetSst_file_manager

func (_swig_base SwigcptrOptions) GetSst_file_manager() (_swig_ret Std_shared_ptr_Sl_rocksdb_SstFileManager_Sg_)

func (SwigcptrOptions) GetStatistics

func (_swig_base SwigcptrOptions) GetStatistics() (_swig_ret Std_shared_ptr_Sl_rocksdb_Statistics_Sg_)

func (SwigcptrOptions) GetStats_dump_period_sec

func (_swig_base SwigcptrOptions) GetStats_dump_period_sec() (_swig_ret uint)

func (SwigcptrOptions) GetTable_cache_numshardbits

func (_swig_base SwigcptrOptions) GetTable_cache_numshardbits() (_swig_ret int)

func (SwigcptrOptions) GetTable_factory

func (_swig_base SwigcptrOptions) GetTable_factory() (_swig_ret Std_shared_ptr_Sl_rocksdb_TableFactory_Sg_)

func (SwigcptrOptions) GetTable_properties_collector_factories

func (_swig_base SwigcptrOptions) GetTable_properties_collector_factories() (_swig_ret Std_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_)

func (SwigcptrOptions) GetTarget_file_size_base

func (_swig_base SwigcptrOptions) GetTarget_file_size_base() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetTarget_file_size_multiplier

func (_swig_base SwigcptrOptions) GetTarget_file_size_multiplier() (_swig_ret int)

func (SwigcptrOptions) GetUse_adaptive_mutex

func (_swig_base SwigcptrOptions) GetUse_adaptive_mutex() (_swig_ret bool)

func (SwigcptrOptions) GetUse_fsync

func (_swig_base SwigcptrOptions) GetUse_fsync() (_swig_ret bool)

func (SwigcptrOptions) GetVerify_checksums_in_compaction

func (_swig_base SwigcptrOptions) GetVerify_checksums_in_compaction() (_swig_ret bool)

func (SwigcptrOptions) GetWAL_size_limit_MB

func (_swig_base SwigcptrOptions) GetWAL_size_limit_MB() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetWAL_ttl_seconds

func (_swig_base SwigcptrOptions) GetWAL_ttl_seconds() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetWal_bytes_per_sync

func (_swig_base SwigcptrOptions) GetWal_bytes_per_sync() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetWal_dir

func (_swig_base SwigcptrOptions) GetWal_dir() (_swig_ret string)

func (SwigcptrOptions) GetWal_filter

func (_swig_base SwigcptrOptions) GetWal_filter() (_swig_ret Rocksdb_WalFilter)

func (SwigcptrOptions) GetWal_recovery_mode

func (_swig_base SwigcptrOptions) GetWal_recovery_mode() (_swig_ret RocksdbWALRecoveryMode)

func (SwigcptrOptions) GetWritable_file_max_buffer_size

func (_swig_base SwigcptrOptions) GetWritable_file_max_buffer_size() (_swig_ret int64)

func (SwigcptrOptions) GetWrite_buffer_size

func (_swig_base SwigcptrOptions) GetWrite_buffer_size() (_swig_ret int64)

func (SwigcptrOptions) GetWrite_thread_max_yield_usec

func (_swig_base SwigcptrOptions) GetWrite_thread_max_yield_usec() (_swig_ret Uint64_t)

func (SwigcptrOptions) GetWrite_thread_slow_yield_usec

func (_swig_base SwigcptrOptions) GetWrite_thread_slow_yield_usec() (_swig_ret Uint64_t)

func (SwigcptrOptions) IncreaseParallelism

func (p SwigcptrOptions) IncreaseParallelism(a ...interface{}) DBOptions

func (SwigcptrOptions) IncreaseParallelism__SWIG_0

func (_swig_base SwigcptrOptions) IncreaseParallelism__SWIG_0(arg1 int) (_swig_ret DBOptions)

func (SwigcptrOptions) IncreaseParallelism__SWIG_1

func (_swig_base SwigcptrOptions) IncreaseParallelism__SWIG_1() (_swig_ret DBOptions)

func (SwigcptrOptions) OptimizeForPointLookup

func (_swig_base SwigcptrOptions) OptimizeForPointLookup(arg1 Uint64_t) (_swig_ret ColumnFamilyOptions)

func (SwigcptrOptions) OptimizeLevelStyleCompaction

func (p SwigcptrOptions) OptimizeLevelStyleCompaction(a ...interface{}) ColumnFamilyOptions

func (SwigcptrOptions) OptimizeLevelStyleCompaction__SWIG_0

func (_swig_base SwigcptrOptions) OptimizeLevelStyleCompaction__SWIG_0(arg1 Uint64_t) (_swig_ret ColumnFamilyOptions)

func (SwigcptrOptions) OptimizeLevelStyleCompaction__SWIG_1

func (_swig_base SwigcptrOptions) OptimizeLevelStyleCompaction__SWIG_1() (_swig_ret ColumnFamilyOptions)

func (SwigcptrOptions) OptimizeUniversalStyleCompaction

func (p SwigcptrOptions) OptimizeUniversalStyleCompaction(a ...interface{}) ColumnFamilyOptions

func (SwigcptrOptions) OptimizeUniversalStyleCompaction__SWIG_0

func (_swig_base SwigcptrOptions) OptimizeUniversalStyleCompaction__SWIG_0(arg1 Uint64_t) (_swig_ret ColumnFamilyOptions)

func (SwigcptrOptions) OptimizeUniversalStyleCompaction__SWIG_1

func (_swig_base SwigcptrOptions) OptimizeUniversalStyleCompaction__SWIG_1() (_swig_ret ColumnFamilyOptions)

func (SwigcptrOptions) PrepareForBulkLoad

func (arg1 SwigcptrOptions) PrepareForBulkLoad() (_swig_ret Options)

func (SwigcptrOptions) SetAccess_hint_on_compaction_start

func (_swig_base SwigcptrOptions) SetAccess_hint_on_compaction_start(arg1 RocksdbDBOptionsAccessHint)

func (SwigcptrOptions) SetAdvise_random_on_open

func (_swig_base SwigcptrOptions) SetAdvise_random_on_open(arg1 bool)

func (SwigcptrOptions) SetAllow_concurrent_memtable_write

func (_swig_base SwigcptrOptions) SetAllow_concurrent_memtable_write(arg1 bool)

func (SwigcptrOptions) SetAllow_fallocate

func (_swig_base SwigcptrOptions) SetAllow_fallocate(arg1 bool)

func (SwigcptrOptions) SetAllow_mmap_reads

func (_swig_base SwigcptrOptions) SetAllow_mmap_reads(arg1 bool)

func (SwigcptrOptions) SetAllow_mmap_writes

func (_swig_base SwigcptrOptions) SetAllow_mmap_writes(arg1 bool)

func (SwigcptrOptions) SetAllow_os_buffer

func (_swig_base SwigcptrOptions) SetAllow_os_buffer(arg1 bool)

func (SwigcptrOptions) SetArena_block_size

func (_swig_base SwigcptrOptions) SetArena_block_size(arg1 int64)

func (SwigcptrOptions) SetBase_background_compactions

func (_swig_base SwigcptrOptions) SetBase_background_compactions(arg1 int)

func (SwigcptrOptions) SetBloom_locality

func (_swig_base SwigcptrOptions) SetBloom_locality(arg1 Uint32_t)

func (SwigcptrOptions) SetBytes_per_sync

func (_swig_base SwigcptrOptions) SetBytes_per_sync(arg1 Uint64_t)

func (SwigcptrOptions) SetCompaction_filter

func (_swig_base SwigcptrOptions) SetCompaction_filter(arg1 Rocksdb_CompactionFilter)

func (SwigcptrOptions) SetCompaction_filter_factory

func (_swig_base SwigcptrOptions) SetCompaction_filter_factory(arg1 Std_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_)

func (SwigcptrOptions) SetCompaction_measure_io_stats

func (_swig_base SwigcptrOptions) SetCompaction_measure_io_stats(arg1 bool)

func (SwigcptrOptions) SetCompaction_options_fifo

func (_swig_base SwigcptrOptions) SetCompaction_options_fifo(arg1 CompactionOptionsFIFO)

func (SwigcptrOptions) SetCompaction_options_universal

func (_swig_base SwigcptrOptions) SetCompaction_options_universal(arg1 CompactionOptionsUniversal)

func (SwigcptrOptions) SetCompaction_pri

func (_swig_base SwigcptrOptions) SetCompaction_pri(arg1 RocksdbCompactionPri)

func (SwigcptrOptions) SetCompaction_readahead_size

func (_swig_base SwigcptrOptions) SetCompaction_readahead_size(arg1 int64)

func (SwigcptrOptions) SetCompaction_style

func (_swig_base SwigcptrOptions) SetCompaction_style(arg1 RocksdbCompactionStyle)

func (SwigcptrOptions) SetComparator

func (_swig_base SwigcptrOptions) SetComparator(arg1 Rocksdb_Comparator)

func (SwigcptrOptions) SetCompression

func (_swig_base SwigcptrOptions) SetCompression(arg1 RocksdbCompressionType)

func (SwigcptrOptions) SetCompression_opts

func (_swig_base SwigcptrOptions) SetCompression_opts(arg1 CompressionOptions)

func (SwigcptrOptions) SetCompression_per_level

func (_swig_base SwigcptrOptions) SetCompression_per_level(arg1 Std_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_)

func (SwigcptrOptions) SetCreate_if_missing

func (_swig_base SwigcptrOptions) SetCreate_if_missing(arg1 bool)

func (SwigcptrOptions) SetCreate_missing_column_families

func (_swig_base SwigcptrOptions) SetCreate_missing_column_families(arg1 bool)

func (SwigcptrOptions) SetDb_log_dir

func (_swig_base SwigcptrOptions) SetDb_log_dir(arg1 string)

func (SwigcptrOptions) SetDb_paths

func (_swig_base SwigcptrOptions) SetDb_paths(arg1 Std_vector_Sl_rocksdb_DbPath_Sg_)

func (SwigcptrOptions) SetDb_write_buffer_size

func (_swig_base SwigcptrOptions) SetDb_write_buffer_size(arg1 int64)

func (SwigcptrOptions) SetDelayed_write_rate

func (_swig_base SwigcptrOptions) SetDelayed_write_rate(arg1 Uint64_t)

func (SwigcptrOptions) SetDelete_obsolete_files_period_micros

func (_swig_base SwigcptrOptions) SetDelete_obsolete_files_period_micros(arg1 Uint64_t)

func (SwigcptrOptions) SetDisableDataSync

func (_swig_base SwigcptrOptions) SetDisableDataSync(arg1 bool)

func (SwigcptrOptions) SetDisable_auto_compactions

func (_swig_base SwigcptrOptions) SetDisable_auto_compactions(arg1 bool)

func (SwigcptrOptions) SetEnable_thread_tracking

func (_swig_base SwigcptrOptions) SetEnable_thread_tracking(arg1 bool)

func (SwigcptrOptions) SetEnable_write_thread_adaptive_yield

func (_swig_base SwigcptrOptions) SetEnable_write_thread_adaptive_yield(arg1 bool)

func (SwigcptrOptions) SetEnv

func (_swig_base SwigcptrOptions) SetEnv(arg1 Rocksdb_Env)

func (SwigcptrOptions) SetError_if_exists

func (_swig_base SwigcptrOptions) SetError_if_exists(arg1 bool)

func (SwigcptrOptions) SetExpanded_compaction_factor

func (_swig_base SwigcptrOptions) SetExpanded_compaction_factor(arg1 int)

func (SwigcptrOptions) SetFail_if_options_file_error

func (_swig_base SwigcptrOptions) SetFail_if_options_file_error(arg1 bool)

func (SwigcptrOptions) SetFilter_deletes

func (_swig_base SwigcptrOptions) SetFilter_deletes(arg1 bool)

func (SwigcptrOptions) SetHard_pending_compaction_bytes_limit

func (_swig_base SwigcptrOptions) SetHard_pending_compaction_bytes_limit(arg1 Uint64_t)

func (SwigcptrOptions) SetHard_rate_limit

func (_swig_base SwigcptrOptions) SetHard_rate_limit(arg1 float64)

func (SwigcptrOptions) SetInfo_log

func (_swig_base SwigcptrOptions) SetInfo_log(arg1 Std_shared_ptr_Sl_rocksdb_Logger_Sg_)

func (SwigcptrOptions) SetInfo_log_level

func (_swig_base SwigcptrOptions) SetInfo_log_level(arg1 RocksdbInfoLogLevel)

func (SwigcptrOptions) SetInplace_callback

func (_swig_base SwigcptrOptions) SetInplace_callback(arg1 _swig_fnptr)

func (SwigcptrOptions) SetInplace_update_num_locks

func (_swig_base SwigcptrOptions) SetInplace_update_num_locks(arg1 int64)

func (SwigcptrOptions) SetInplace_update_support

func (_swig_base SwigcptrOptions) SetInplace_update_support(arg1 bool)

func (SwigcptrOptions) SetIs_fd_close_on_exec

func (_swig_base SwigcptrOptions) SetIs_fd_close_on_exec(arg1 bool)

func (SwigcptrOptions) SetKeep_log_file_num

func (_swig_base SwigcptrOptions) SetKeep_log_file_num(arg1 int64)

func (SwigcptrOptions) SetLevel0_file_num_compaction_trigger

func (_swig_base SwigcptrOptions) SetLevel0_file_num_compaction_trigger(arg1 int)

func (SwigcptrOptions) SetLevel0_slowdown_writes_trigger

func (_swig_base SwigcptrOptions) SetLevel0_slowdown_writes_trigger(arg1 int)

func (SwigcptrOptions) SetLevel0_stop_writes_trigger

func (_swig_base SwigcptrOptions) SetLevel0_stop_writes_trigger(arg1 int)

func (SwigcptrOptions) SetLevel_compaction_dynamic_level_bytes

func (_swig_base SwigcptrOptions) SetLevel_compaction_dynamic_level_bytes(arg1 bool)

func (SwigcptrOptions) SetListeners

func (SwigcptrOptions) SetLog_file_time_to_roll

func (_swig_base SwigcptrOptions) SetLog_file_time_to_roll(arg1 int64)

func (SwigcptrOptions) SetManifest_preallocation_size

func (_swig_base SwigcptrOptions) SetManifest_preallocation_size(arg1 int64)

func (SwigcptrOptions) SetMax_background_compactions

func (_swig_base SwigcptrOptions) SetMax_background_compactions(arg1 int)

func (SwigcptrOptions) SetMax_background_flushes

func (_swig_base SwigcptrOptions) SetMax_background_flushes(arg1 int)

func (SwigcptrOptions) SetMax_bytes_for_level_base

func (_swig_base SwigcptrOptions) SetMax_bytes_for_level_base(arg1 Uint64_t)

func (SwigcptrOptions) SetMax_bytes_for_level_multiplier

func (_swig_base SwigcptrOptions) SetMax_bytes_for_level_multiplier(arg1 int)

func (SwigcptrOptions) SetMax_bytes_for_level_multiplier_additional

func (_swig_base SwigcptrOptions) SetMax_bytes_for_level_multiplier_additional(arg1 Std_vector_Sl_int_Sg_)

func (SwigcptrOptions) SetMax_file_opening_threads

func (_swig_base SwigcptrOptions) SetMax_file_opening_threads(arg1 int)

func (SwigcptrOptions) SetMax_grandparent_overlap_factor

func (_swig_base SwigcptrOptions) SetMax_grandparent_overlap_factor(arg1 int)

func (SwigcptrOptions) SetMax_log_file_size

func (_swig_base SwigcptrOptions) SetMax_log_file_size(arg1 int64)

func (SwigcptrOptions) SetMax_manifest_file_size

func (_swig_base SwigcptrOptions) SetMax_manifest_file_size(arg1 Uint64_t)

func (SwigcptrOptions) SetMax_mem_compaction_level

func (_swig_base SwigcptrOptions) SetMax_mem_compaction_level(arg1 int)

func (SwigcptrOptions) SetMax_open_files

func (_swig_base SwigcptrOptions) SetMax_open_files(arg1 int)

func (SwigcptrOptions) SetMax_sequential_skip_in_iterations

func (_swig_base SwigcptrOptions) SetMax_sequential_skip_in_iterations(arg1 Uint64_t)

func (SwigcptrOptions) SetMax_subcompactions

func (_swig_base SwigcptrOptions) SetMax_subcompactions(arg1 Uint32_t)

func (SwigcptrOptions) SetMax_successive_merges

func (_swig_base SwigcptrOptions) SetMax_successive_merges(arg1 int64)

func (SwigcptrOptions) SetMax_total_wal_size

func (_swig_base SwigcptrOptions) SetMax_total_wal_size(arg1 Uint64_t)

func (SwigcptrOptions) SetMax_write_buffer_number

func (_swig_base SwigcptrOptions) SetMax_write_buffer_number(arg1 int)

func (SwigcptrOptions) SetMax_write_buffer_number_to_maintain

func (_swig_base SwigcptrOptions) SetMax_write_buffer_number_to_maintain(arg1 int)

func (SwigcptrOptions) SetMemtable_factory

func (_swig_base SwigcptrOptions) SetMemtable_factory(arg1 Std_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_)

func (SwigcptrOptions) SetMemtable_prefix_bloom_bits

func (_swig_base SwigcptrOptions) SetMemtable_prefix_bloom_bits(arg1 Uint32_t)

func (SwigcptrOptions) SetMemtable_prefix_bloom_huge_page_tlb_size

func (_swig_base SwigcptrOptions) SetMemtable_prefix_bloom_huge_page_tlb_size(arg1 int64)

func (SwigcptrOptions) SetMemtable_prefix_bloom_probes

func (_swig_base SwigcptrOptions) SetMemtable_prefix_bloom_probes(arg1 Uint32_t)

func (SwigcptrOptions) SetMerge_operator

func (_swig_base SwigcptrOptions) SetMerge_operator(arg1 Std_shared_ptr_Sl_rocksdb_MergeOperator_Sg_)

func (SwigcptrOptions) SetMin_partial_merge_operands

func (_swig_base SwigcptrOptions) SetMin_partial_merge_operands(arg1 Uint32_t)

func (SwigcptrOptions) SetMin_write_buffer_number_to_merge

func (_swig_base SwigcptrOptions) SetMin_write_buffer_number_to_merge(arg1 int)

func (SwigcptrOptions) SetNew_table_reader_for_compaction_inputs

func (_swig_base SwigcptrOptions) SetNew_table_reader_for_compaction_inputs(arg1 bool)

func (SwigcptrOptions) SetNum_levels

func (_swig_base SwigcptrOptions) SetNum_levels(arg1 int)

func (SwigcptrOptions) SetOptimize_filters_for_hits

func (_swig_base SwigcptrOptions) SetOptimize_filters_for_hits(arg1 bool)

func (SwigcptrOptions) SetParanoid_checks

func (_swig_base SwigcptrOptions) SetParanoid_checks(arg1 bool)

func (SwigcptrOptions) SetParanoid_file_checks

func (_swig_base SwigcptrOptions) SetParanoid_file_checks(arg1 bool)

func (SwigcptrOptions) SetPrefix_extractor

func (_swig_base SwigcptrOptions) SetPrefix_extractor(arg1 Std_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_)

func (SwigcptrOptions) SetPurge_redundant_kvs_while_flush

func (_swig_base SwigcptrOptions) SetPurge_redundant_kvs_while_flush(arg1 bool)

func (SwigcptrOptions) SetRandom_access_max_buffer_size

func (_swig_base SwigcptrOptions) SetRandom_access_max_buffer_size(arg1 int64)

func (SwigcptrOptions) SetRate_limit_delay_max_milliseconds

func (_swig_base SwigcptrOptions) SetRate_limit_delay_max_milliseconds(arg1 uint)

func (SwigcptrOptions) SetRate_limiter

func (_swig_base SwigcptrOptions) SetRate_limiter(arg1 Std_shared_ptr_Sl_rocksdb_RateLimiter_Sg_)

func (SwigcptrOptions) SetRecycle_log_file_num

func (_swig_base SwigcptrOptions) SetRecycle_log_file_num(arg1 int64)

func (SwigcptrOptions) SetRow_cache

func (_swig_base SwigcptrOptions) SetRow_cache(arg1 Std_shared_ptr_Sl_rocksdb_Cache_Sg_)

func (SwigcptrOptions) SetSkip_log_error_on_recovery

func (_swig_base SwigcptrOptions) SetSkip_log_error_on_recovery(arg1 bool)

func (SwigcptrOptions) SetSkip_stats_update_on_db_open

func (_swig_base SwigcptrOptions) SetSkip_stats_update_on_db_open(arg1 bool)

func (SwigcptrOptions) SetSoft_pending_compaction_bytes_limit

func (_swig_base SwigcptrOptions) SetSoft_pending_compaction_bytes_limit(arg1 Uint64_t)

func (SwigcptrOptions) SetSoft_rate_limit

func (_swig_base SwigcptrOptions) SetSoft_rate_limit(arg1 float64)

func (SwigcptrOptions) SetSource_compaction_factor

func (_swig_base SwigcptrOptions) SetSource_compaction_factor(arg1 int)

func (SwigcptrOptions) SetSst_file_manager

func (_swig_base SwigcptrOptions) SetSst_file_manager(arg1 Std_shared_ptr_Sl_rocksdb_SstFileManager_Sg_)

func (SwigcptrOptions) SetStatistics

func (_swig_base SwigcptrOptions) SetStatistics(arg1 Std_shared_ptr_Sl_rocksdb_Statistics_Sg_)

func (SwigcptrOptions) SetStats_dump_period_sec

func (_swig_base SwigcptrOptions) SetStats_dump_period_sec(arg1 uint)

func (SwigcptrOptions) SetTable_cache_numshardbits

func (_swig_base SwigcptrOptions) SetTable_cache_numshardbits(arg1 int)

func (SwigcptrOptions) SetTable_factory

func (_swig_base SwigcptrOptions) SetTable_factory(arg1 Std_shared_ptr_Sl_rocksdb_TableFactory_Sg_)

func (SwigcptrOptions) SetTable_properties_collector_factories

func (_swig_base SwigcptrOptions) SetTable_properties_collector_factories(arg1 Std_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_)

func (SwigcptrOptions) SetTarget_file_size_base

func (_swig_base SwigcptrOptions) SetTarget_file_size_base(arg1 Uint64_t)

func (SwigcptrOptions) SetTarget_file_size_multiplier

func (_swig_base SwigcptrOptions) SetTarget_file_size_multiplier(arg1 int)

func (SwigcptrOptions) SetUse_adaptive_mutex

func (_swig_base SwigcptrOptions) SetUse_adaptive_mutex(arg1 bool)

func (SwigcptrOptions) SetUse_fsync

func (_swig_base SwigcptrOptions) SetUse_fsync(arg1 bool)

func (SwigcptrOptions) SetVerify_checksums_in_compaction

func (_swig_base SwigcptrOptions) SetVerify_checksums_in_compaction(arg1 bool)

func (SwigcptrOptions) SetWAL_size_limit_MB

func (_swig_base SwigcptrOptions) SetWAL_size_limit_MB(arg1 Uint64_t)

func (SwigcptrOptions) SetWAL_ttl_seconds

func (_swig_base SwigcptrOptions) SetWAL_ttl_seconds(arg1 Uint64_t)

func (SwigcptrOptions) SetWal_bytes_per_sync

func (_swig_base SwigcptrOptions) SetWal_bytes_per_sync(arg1 Uint64_t)

func (SwigcptrOptions) SetWal_dir

func (_swig_base SwigcptrOptions) SetWal_dir(arg1 string)

func (SwigcptrOptions) SetWal_filter

func (_swig_base SwigcptrOptions) SetWal_filter(arg1 Rocksdb_WalFilter)

func (SwigcptrOptions) SetWal_recovery_mode

func (_swig_base SwigcptrOptions) SetWal_recovery_mode(arg1 RocksdbWALRecoveryMode)

func (SwigcptrOptions) SetWritable_file_max_buffer_size

func (_swig_base SwigcptrOptions) SetWritable_file_max_buffer_size(arg1 int64)

func (SwigcptrOptions) SetWrite_buffer_size

func (_swig_base SwigcptrOptions) SetWrite_buffer_size(arg1 int64)

func (SwigcptrOptions) SetWrite_thread_max_yield_usec

func (_swig_base SwigcptrOptions) SetWrite_thread_max_yield_usec(arg1 Uint64_t)

func (SwigcptrOptions) SetWrite_thread_slow_yield_usec

func (_swig_base SwigcptrOptions) SetWrite_thread_slow_yield_usec(arg1 Uint64_t)

func (SwigcptrOptions) SwigGetColumnFamilyOptions

func (arg1 SwigcptrOptions) SwigGetColumnFamilyOptions() (_swig_ret ColumnFamilyOptions)

func (SwigcptrOptions) SwigGetDBOptions

func (p SwigcptrOptions) SwigGetDBOptions() DBOptions

func (SwigcptrOptions) SwigIsDBOptions

func (p SwigcptrOptions) SwigIsDBOptions()

func (SwigcptrOptions) SwigIsOptions

func (p SwigcptrOptions) SwigIsOptions()

func (SwigcptrOptions) Swigcptr

func (p SwigcptrOptions) Swigcptr() uintptr

type SwigcptrRange

type SwigcptrRange uintptr

func (SwigcptrRange) GetLimit

func (arg1 SwigcptrRange) GetLimit() (_swig_ret Slice)

func (SwigcptrRange) GetStart

func (arg1 SwigcptrRange) GetStart() (_swig_ret Slice)

func (SwigcptrRange) SetLimit

func (arg1 SwigcptrRange) SetLimit(arg2 Slice)

func (SwigcptrRange) SetStart

func (arg1 SwigcptrRange) SetStart(arg2 Slice)

func (SwigcptrRange) SwigIsRange

func (p SwigcptrRange) SwigIsRange()

func (SwigcptrRange) Swigcptr

func (p SwigcptrRange) Swigcptr() uintptr

type SwigcptrReadOptions

type SwigcptrReadOptions uintptr

func (SwigcptrReadOptions) GetFill_cache

func (arg1 SwigcptrReadOptions) GetFill_cache() (_swig_ret bool)

func (SwigcptrReadOptions) GetIterate_upper_bound

func (arg1 SwigcptrReadOptions) GetIterate_upper_bound() (_swig_ret Slice)

func (SwigcptrReadOptions) GetManaged

func (arg1 SwigcptrReadOptions) GetManaged() (_swig_ret bool)

func (SwigcptrReadOptions) GetPin_data

func (arg1 SwigcptrReadOptions) GetPin_data() (_swig_ret bool)

func (SwigcptrReadOptions) GetPrefix_same_as_start

func (arg1 SwigcptrReadOptions) GetPrefix_same_as_start() (_swig_ret bool)

func (SwigcptrReadOptions) GetRead_tier

func (arg1 SwigcptrReadOptions) GetRead_tier() (_swig_ret RocksdbReadTier)

func (SwigcptrReadOptions) GetSnapshot

func (arg1 SwigcptrReadOptions) GetSnapshot() (_swig_ret Rocksdb_Snapshot)

func (SwigcptrReadOptions) GetTailing

func (arg1 SwigcptrReadOptions) GetTailing() (_swig_ret bool)

func (SwigcptrReadOptions) GetTotal_order_seek

func (arg1 SwigcptrReadOptions) GetTotal_order_seek() (_swig_ret bool)

func (SwigcptrReadOptions) GetVerify_checksums

func (arg1 SwigcptrReadOptions) GetVerify_checksums() (_swig_ret bool)

func (SwigcptrReadOptions) SetFill_cache

func (arg1 SwigcptrReadOptions) SetFill_cache(arg2 bool)

func (SwigcptrReadOptions) SetIterate_upper_bound

func (arg1 SwigcptrReadOptions) SetIterate_upper_bound(arg2 Slice)

func (SwigcptrReadOptions) SetManaged

func (arg1 SwigcptrReadOptions) SetManaged(arg2 bool)

func (SwigcptrReadOptions) SetPin_data

func (arg1 SwigcptrReadOptions) SetPin_data(arg2 bool)

func (SwigcptrReadOptions) SetPrefix_same_as_start

func (arg1 SwigcptrReadOptions) SetPrefix_same_as_start(arg2 bool)

func (SwigcptrReadOptions) SetRead_tier

func (arg1 SwigcptrReadOptions) SetRead_tier(arg2 RocksdbReadTier)

func (SwigcptrReadOptions) SetSnapshot

func (arg1 SwigcptrReadOptions) SetSnapshot(arg2 Rocksdb_Snapshot)

func (SwigcptrReadOptions) SetTailing

func (arg1 SwigcptrReadOptions) SetTailing(arg2 bool)

func (SwigcptrReadOptions) SetTotal_order_seek

func (arg1 SwigcptrReadOptions) SetTotal_order_seek(arg2 bool)

func (SwigcptrReadOptions) SetVerify_checksums

func (arg1 SwigcptrReadOptions) SetVerify_checksums(arg2 bool)

func (SwigcptrReadOptions) SwigIsReadOptions

func (p SwigcptrReadOptions) SwigIsReadOptions()

func (SwigcptrReadOptions) Swigcptr

func (p SwigcptrReadOptions) Swigcptr() uintptr

type SwigcptrRocksdb_CompactionFilter

type SwigcptrRocksdb_CompactionFilter uintptr

func (SwigcptrRocksdb_CompactionFilter) Swigcptr

type SwigcptrRocksdb_Comparator

type SwigcptrRocksdb_Comparator uintptr

func (SwigcptrRocksdb_Comparator) Swigcptr

func (p SwigcptrRocksdb_Comparator) Swigcptr() uintptr

type SwigcptrRocksdb_Env

type SwigcptrRocksdb_Env uintptr

func (SwigcptrRocksdb_Env) Swigcptr

func (p SwigcptrRocksdb_Env) Swigcptr() uintptr

type SwigcptrRocksdb_ExternalSstFileInfo

type SwigcptrRocksdb_ExternalSstFileInfo uintptr

func (SwigcptrRocksdb_ExternalSstFileInfo) Swigcptr

type SwigcptrRocksdb_Logger

type SwigcptrRocksdb_Logger uintptr

func (SwigcptrRocksdb_Logger) Swigcptr

func (p SwigcptrRocksdb_Logger) Swigcptr() uintptr

type SwigcptrRocksdb_Snapshot

type SwigcptrRocksdb_Snapshot uintptr

func (SwigcptrRocksdb_Snapshot) Swigcptr

func (p SwigcptrRocksdb_Snapshot) Swigcptr() uintptr

type SwigcptrRocksdb_WalFilter

type SwigcptrRocksdb_WalFilter uintptr

func (SwigcptrRocksdb_WalFilter) Swigcptr

func (p SwigcptrRocksdb_WalFilter) Swigcptr() uintptr

type SwigcptrRocksdb_WriteBatch

type SwigcptrRocksdb_WriteBatch uintptr

func (SwigcptrRocksdb_WriteBatch) Swigcptr

func (p SwigcptrRocksdb_WriteBatch) Swigcptr() uintptr

type SwigcptrSequenceNumber

type SwigcptrSequenceNumber uintptr

func (SwigcptrSequenceNumber) Swigcptr

func (p SwigcptrSequenceNumber) Swigcptr() uintptr

type SwigcptrSlice

type SwigcptrSlice uintptr

func (SwigcptrSlice) Clear

func (arg1 SwigcptrSlice) Clear()

func (SwigcptrSlice) Compare

func (arg1 SwigcptrSlice) Compare(arg2 Slice) (_swig_ret int)

func (SwigcptrSlice) Data

func (arg1 SwigcptrSlice) Data() (_swig_ret string)

func (SwigcptrSlice) Difference_offset

func (arg1 SwigcptrSlice) Difference_offset(arg2 Slice) (_swig_ret int64)

func (SwigcptrSlice) Empty

func (arg1 SwigcptrSlice) Empty() (_swig_ret bool)

func (SwigcptrSlice) Ends_with

func (arg1 SwigcptrSlice) Ends_with(arg2 Slice) (_swig_ret bool)

func (SwigcptrSlice) GetData_

func (arg1 SwigcptrSlice) GetData_() (_swig_ret string)

func (SwigcptrSlice) GetSize_

func (arg1 SwigcptrSlice) GetSize_() (_swig_ret int64)

func (SwigcptrSlice) Remove_prefix

func (arg1 SwigcptrSlice) Remove_prefix(arg2 int64)

func (SwigcptrSlice) Remove_suffix

func (arg1 SwigcptrSlice) Remove_suffix(arg2 int64)

func (SwigcptrSlice) SetData_

func (arg1 SwigcptrSlice) SetData_(arg2 string)

func (SwigcptrSlice) SetSize_

func (arg1 SwigcptrSlice) SetSize_(arg2 int64)

func (SwigcptrSlice) Size

func (arg1 SwigcptrSlice) Size() (_swig_ret int64)

func (SwigcptrSlice) Starts_with

func (arg1 SwigcptrSlice) Starts_with(arg2 Slice) (_swig_ret bool)

func (SwigcptrSlice) SwigIsSlice

func (p SwigcptrSlice) SwigIsSlice()

func (SwigcptrSlice) Swigcptr

func (p SwigcptrSlice) Swigcptr() uintptr

func (SwigcptrSlice) ToString

func (p SwigcptrSlice) ToString(a ...interface{}) string

func (SwigcptrSlice) ToString__SWIG_0

func (arg1 SwigcptrSlice) ToString__SWIG_0(arg2 bool) (_swig_ret string)

func (SwigcptrSlice) ToString__SWIG_1

func (arg1 SwigcptrSlice) ToString__SWIG_1() (_swig_ret string)

type SwigcptrSliceParts

type SwigcptrSliceParts uintptr

func (SwigcptrSliceParts) GetNum_parts

func (arg1 SwigcptrSliceParts) GetNum_parts() (_swig_ret int)

func (SwigcptrSliceParts) GetParts

func (arg1 SwigcptrSliceParts) GetParts() (_swig_ret Slice)

func (SwigcptrSliceParts) SetNum_parts

func (arg1 SwigcptrSliceParts) SetNum_parts(arg2 int)

func (SwigcptrSliceParts) SetParts

func (arg1 SwigcptrSliceParts) SetParts(arg2 Slice)

func (SwigcptrSliceParts) SwigIsSliceParts

func (p SwigcptrSliceParts) SwigIsSliceParts()

func (SwigcptrSliceParts) Swigcptr

func (p SwigcptrSliceParts) Swigcptr() uintptr

type SwigcptrStatus

type SwigcptrStatus uintptr

func (SwigcptrStatus) Code

func (arg1 SwigcptrStatus) Code() (_swig_ret RocksdbStatusCode)

func (SwigcptrStatus) IsAborted

func (arg1 SwigcptrStatus) IsAborted() (_swig_ret bool)

func (SwigcptrStatus) IsBusy

func (arg1 SwigcptrStatus) IsBusy() (_swig_ret bool)

func (SwigcptrStatus) IsCorruption

func (arg1 SwigcptrStatus) IsCorruption() (_swig_ret bool)

func (SwigcptrStatus) IsExpired

func (arg1 SwigcptrStatus) IsExpired() (_swig_ret bool)

func (SwigcptrStatus) IsIOError

func (arg1 SwigcptrStatus) IsIOError() (_swig_ret bool)

func (SwigcptrStatus) IsIncomplete

func (arg1 SwigcptrStatus) IsIncomplete() (_swig_ret bool)

func (SwigcptrStatus) IsInvalidArgument

func (arg1 SwigcptrStatus) IsInvalidArgument() (_swig_ret bool)

func (SwigcptrStatus) IsMergeInProgress

func (arg1 SwigcptrStatus) IsMergeInProgress() (_swig_ret bool)

func (SwigcptrStatus) IsNotFound

func (arg1 SwigcptrStatus) IsNotFound() (_swig_ret bool)

func (SwigcptrStatus) IsNotSupported

func (arg1 SwigcptrStatus) IsNotSupported() (_swig_ret bool)

func (SwigcptrStatus) IsShutdownInProgress

func (arg1 SwigcptrStatus) IsShutdownInProgress() (_swig_ret bool)

func (SwigcptrStatus) IsTimedOut

func (arg1 SwigcptrStatus) IsTimedOut() (_swig_ret bool)

func (SwigcptrStatus) IsTryAgain

func (arg1 SwigcptrStatus) IsTryAgain() (_swig_ret bool)

func (SwigcptrStatus) Ok

func (arg1 SwigcptrStatus) Ok() (_swig_ret bool)

func (SwigcptrStatus) Subcode

func (arg1 SwigcptrStatus) Subcode() (_swig_ret RocksdbStatusSubCode)

func (SwigcptrStatus) SwigIsStatus

func (p SwigcptrStatus) SwigIsStatus()

func (SwigcptrStatus) Swigcptr

func (p SwigcptrStatus) Swigcptr() uintptr

func (SwigcptrStatus) ToString

func (arg1 SwigcptrStatus) ToString() (_swig_ret string)

type SwigcptrStatusDBPair

type SwigcptrStatusDBPair uintptr

func (SwigcptrStatusDBPair) GetDb

func (arg1 SwigcptrStatusDBPair) GetDb() (_swig_ret DB)

func (SwigcptrStatusDBPair) GetStatus

func (arg1 SwigcptrStatusDBPair) GetStatus() (_swig_ret Status)

func (SwigcptrStatusDBPair) SetDb

func (arg1 SwigcptrStatusDBPair) SetDb(arg2 DB)

func (SwigcptrStatusDBPair) SetStatus

func (arg1 SwigcptrStatusDBPair) SetStatus(arg2 Status)

func (SwigcptrStatusDBPair) SwigIsStatusDBPair

func (p SwigcptrStatusDBPair) SwigIsStatusDBPair()

func (SwigcptrStatusDBPair) Swigcptr

func (p SwigcptrStatusDBPair) Swigcptr() uintptr

type SwigcptrStatusStringPair

type SwigcptrStatusStringPair uintptr

func (SwigcptrStatusStringPair) GetStatus

func (arg1 SwigcptrStatusStringPair) GetStatus() (_swig_ret Status)

func (SwigcptrStatusStringPair) GetValue

func (arg1 SwigcptrStatusStringPair) GetValue() (_swig_ret string)

func (SwigcptrStatusStringPair) SetStatus

func (arg1 SwigcptrStatusStringPair) SetStatus(arg2 Status)

func (SwigcptrStatusStringPair) SetValue

func (arg1 SwigcptrStatusStringPair) SetValue(arg2 string)

func (SwigcptrStatusStringPair) SwigIsStatusStringPair

func (p SwigcptrStatusStringPair) SwigIsStatusStringPair()

func (SwigcptrStatusStringPair) Swigcptr

func (p SwigcptrStatusStringPair) Swigcptr() uintptr

type SwigcptrStd_shared_ptr_Sl_rocksdb_Cache_Sg_

type SwigcptrStd_shared_ptr_Sl_rocksdb_Cache_Sg_ uintptr

func (SwigcptrStd_shared_ptr_Sl_rocksdb_Cache_Sg_) Swigcptr

type SwigcptrStd_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_

type SwigcptrStd_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_ uintptr

func (SwigcptrStd_shared_ptr_Sl_rocksdb_CompactionFilterFactory_Sg_) Swigcptr

type SwigcptrStd_shared_ptr_Sl_rocksdb_Logger_Sg_

type SwigcptrStd_shared_ptr_Sl_rocksdb_Logger_Sg_ uintptr

func (SwigcptrStd_shared_ptr_Sl_rocksdb_Logger_Sg_) Swigcptr

type SwigcptrStd_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_

type SwigcptrStd_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_ uintptr

func (SwigcptrStd_shared_ptr_Sl_rocksdb_MemTableRepFactory_Sg_) Swigcptr

type SwigcptrStd_shared_ptr_Sl_rocksdb_MergeOperator_Sg_

type SwigcptrStd_shared_ptr_Sl_rocksdb_MergeOperator_Sg_ uintptr

func (SwigcptrStd_shared_ptr_Sl_rocksdb_MergeOperator_Sg_) Swigcptr

type SwigcptrStd_shared_ptr_Sl_rocksdb_RateLimiter_Sg_

type SwigcptrStd_shared_ptr_Sl_rocksdb_RateLimiter_Sg_ uintptr

func (SwigcptrStd_shared_ptr_Sl_rocksdb_RateLimiter_Sg_) Swigcptr

type SwigcptrStd_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_

type SwigcptrStd_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_ uintptr

func (SwigcptrStd_shared_ptr_Sl_rocksdb_SliceTransform_SS_const_Sg_) Swigcptr

type SwigcptrStd_shared_ptr_Sl_rocksdb_SstFileManager_Sg_

type SwigcptrStd_shared_ptr_Sl_rocksdb_SstFileManager_Sg_ uintptr

func (SwigcptrStd_shared_ptr_Sl_rocksdb_SstFileManager_Sg_) Swigcptr

type SwigcptrStd_shared_ptr_Sl_rocksdb_Statistics_Sg_

type SwigcptrStd_shared_ptr_Sl_rocksdb_Statistics_Sg_ uintptr

func (SwigcptrStd_shared_ptr_Sl_rocksdb_Statistics_Sg_) Swigcptr

type SwigcptrStd_shared_ptr_Sl_rocksdb_TableFactory_Sg_

type SwigcptrStd_shared_ptr_Sl_rocksdb_TableFactory_Sg_ uintptr

func (SwigcptrStd_shared_ptr_Sl_rocksdb_TableFactory_Sg_) Swigcptr

type SwigcptrStd_size_t

type SwigcptrStd_size_t uintptr

func (SwigcptrStd_size_t) Swigcptr

func (p SwigcptrStd_size_t) Swigcptr() uintptr

type SwigcptrStd_unordered_map_Sl_std_string_Sc_std_shared_ptr_Sl_rocksdb_TableProperties_SS_const_Sg__Sg_

type SwigcptrStd_unordered_map_Sl_std_string_Sc_std_shared_ptr_Sl_rocksdb_TableProperties_SS_const_Sg__Sg_ uintptr

func (SwigcptrStd_unordered_map_Sl_std_string_Sc_std_shared_ptr_Sl_rocksdb_TableProperties_SS_const_Sg__Sg_) Swigcptr

type SwigcptrStd_unordered_map_Sl_std_string_Sc_std_string_Sg_

type SwigcptrStd_unordered_map_Sl_std_string_Sc_std_string_Sg_ uintptr

func (SwigcptrStd_unordered_map_Sl_std_string_Sc_std_string_Sg_) Swigcptr

type SwigcptrStd_vector_Sl_Iterator_Sm__Sg_

type SwigcptrStd_vector_Sl_Iterator_Sm__Sg_ uintptr

func (SwigcptrStd_vector_Sl_Iterator_Sm__Sg_) Swigcptr

type SwigcptrStd_vector_Sl_LiveFileMetaData_Sg_

type SwigcptrStd_vector_Sl_LiveFileMetaData_Sg_ uintptr

func (SwigcptrStd_vector_Sl_LiveFileMetaData_Sg_) Swigcptr

type SwigcptrStd_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_

type SwigcptrStd_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_ uintptr

func (SwigcptrStd_vector_Sl_enum_SS_rocksdb_CompressionType_Sg_) Swigcptr

type SwigcptrStd_vector_Sl_int_Sg_

type SwigcptrStd_vector_Sl_int_Sg_ uintptr

func (SwigcptrStd_vector_Sl_int_Sg_) Swigcptr

type SwigcptrStd_vector_Sl_rocksdb_ColumnFamilyDescriptor_Sg_

type SwigcptrStd_vector_Sl_rocksdb_ColumnFamilyDescriptor_Sg_ uintptr

func (SwigcptrStd_vector_Sl_rocksdb_ColumnFamilyDescriptor_Sg_) Swigcptr

type SwigcptrStd_vector_Sl_rocksdb_ColumnFamilyHandle_Sm__Sg_

type SwigcptrStd_vector_Sl_rocksdb_ColumnFamilyHandle_Sm__Sg_ uintptr

func (SwigcptrStd_vector_Sl_rocksdb_ColumnFamilyHandle_Sm__Sg_) Swigcptr

type SwigcptrStd_vector_Sl_rocksdb_DbPath_Sg_

type SwigcptrStd_vector_Sl_rocksdb_DbPath_Sg_ uintptr

func (SwigcptrStd_vector_Sl_rocksdb_DbPath_Sg_) Swigcptr

type SwigcptrStd_vector_Sl_rocksdb_Slice_Sg_

type SwigcptrStd_vector_Sl_rocksdb_Slice_Sg_ uintptr

func (SwigcptrStd_vector_Sl_rocksdb_Slice_Sg_) Swigcptr

type SwigcptrStd_vector_Sl_rocksdb_Status_Sg_

type SwigcptrStd_vector_Sl_rocksdb_Status_Sg_ uintptr

func (SwigcptrStd_vector_Sl_rocksdb_Status_Sg_) Swigcptr

type SwigcptrStd_vector_Sl_std_shared_ptr_Sl_EventListener_Sg__Sg_

type SwigcptrStd_vector_Sl_std_shared_ptr_Sl_EventListener_Sg__Sg_ uintptr

func (SwigcptrStd_vector_Sl_std_shared_ptr_Sl_EventListener_Sg__Sg_) Swigcptr

type SwigcptrStd_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_

type SwigcptrStd_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_ uintptr

func (SwigcptrStd_vector_Sl_std_shared_ptr_Sl_rocksdb_TablePropertiesCollectorFactory_Sg__Sg_) Swigcptr

type SwigcptrStd_vector_Sl_std_string_Sg_

type SwigcptrStd_vector_Sl_std_string_Sg_ uintptr

func (SwigcptrStd_vector_Sl_std_string_Sg_) Swigcptr

type SwigcptrTransactionLogIterator_ReadOptions

type SwigcptrTransactionLogIterator_ReadOptions uintptr

func (SwigcptrTransactionLogIterator_ReadOptions) Swigcptr

type SwigcptrUint32_t

type SwigcptrUint32_t uintptr

func (SwigcptrUint32_t) Swigcptr

func (p SwigcptrUint32_t) Swigcptr() uintptr

type SwigcptrUint64_t

type SwigcptrUint64_t uintptr

func (SwigcptrUint64_t) Swigcptr

func (p SwigcptrUint64_t) Swigcptr() uintptr

type SwigcptrUnique_ptr_Sl_TransactionLogIterator_Sg_

type SwigcptrUnique_ptr_Sl_TransactionLogIterator_Sg_ uintptr

func (SwigcptrUnique_ptr_Sl_TransactionLogIterator_Sg_) Swigcptr

type SwigcptrVectorLogPtr

type SwigcptrVectorLogPtr uintptr

func (SwigcptrVectorLogPtr) Swigcptr

func (p SwigcptrVectorLogPtr) Swigcptr() uintptr

type SwigcptrWriteOptions

type SwigcptrWriteOptions uintptr

func (SwigcptrWriteOptions) GetDisableWAL

func (arg1 SwigcptrWriteOptions) GetDisableWAL() (_swig_ret bool)

func (SwigcptrWriteOptions) GetIgnore_missing_column_families

func (arg1 SwigcptrWriteOptions) GetIgnore_missing_column_families() (_swig_ret bool)

func (SwigcptrWriteOptions) GetSync

func (arg1 SwigcptrWriteOptions) GetSync() (_swig_ret bool)

func (SwigcptrWriteOptions) GetTimeout_hint_us

func (arg1 SwigcptrWriteOptions) GetTimeout_hint_us() (_swig_ret Uint64_t)

func (SwigcptrWriteOptions) SetDisableWAL

func (arg1 SwigcptrWriteOptions) SetDisableWAL(arg2 bool)

func (SwigcptrWriteOptions) SetIgnore_missing_column_families

func (arg1 SwigcptrWriteOptions) SetIgnore_missing_column_families(arg2 bool)

func (SwigcptrWriteOptions) SetSync

func (arg1 SwigcptrWriteOptions) SetSync(arg2 bool)

func (SwigcptrWriteOptions) SetTimeout_hint_us

func (arg1 SwigcptrWriteOptions) SetTimeout_hint_us(arg2 Uint64_t)

func (SwigcptrWriteOptions) SwigIsWriteOptions

func (p SwigcptrWriteOptions) SwigIsWriteOptions()

func (SwigcptrWriteOptions) Swigcptr

func (p SwigcptrWriteOptions) Swigcptr() uintptr

type TransactionLogIterator_ReadOptions

type TransactionLogIterator_ReadOptions interface {
	Swigcptr() uintptr
}

type Uint32_t

type Uint32_t interface {
	Swigcptr() uintptr
}

type Uint64_t

type Uint64_t interface {
	Swigcptr() uintptr
}

type Unique_ptr_Sl_TransactionLogIterator_Sg_

type Unique_ptr_Sl_TransactionLogIterator_Sg_ interface {
	Swigcptr() uintptr
}

type VectorLogPtr

type VectorLogPtr interface {
	Swigcptr() uintptr
}

type WriteOptions

type WriteOptions interface {
	Swigcptr() uintptr
	SwigIsWriteOptions()
	SetSync(arg2 bool)
	GetSync() (_swig_ret bool)
	SetDisableWAL(arg2 bool)
	GetDisableWAL() (_swig_ret bool)
	SetTimeout_hint_us(arg2 Uint64_t)
	GetTimeout_hint_us() (_swig_ret Uint64_t)
	SetIgnore_missing_column_families(arg2 bool)
	GetIgnore_missing_column_families() (_swig_ret bool)
}

func NewWriteOptions

func NewWriteOptions() (_swig_ret WriteOptions)

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL