- leveldb_approximate_sizes
void leveldb_approximate_sizes(leveldb_t db, int num_ranges, const(char)* range_start_key, size_t* range_start_key_len, const(char)* range_limit_key, size_t* range_limit_key_len, uint64_t* sizes)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_cache_create_lru
leveldb_cache_t leveldb_cache_create_lru(size_t capacity)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_cache_destroy
void leveldb_cache_destroy(leveldb_cache_t cache)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_close
void leveldb_close(leveldb_t db)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_compact_range
void leveldb_compact_range(leveldb_t db, char* start_key, size_t start_key_len, char* limit_key, size_t limit_key_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_comparator_create
leveldb_comparator_t leveldb_comparator_create(void* state, void function(void*) destructor, int function(void*, const char* a, size_t alen, const char* b, size_t blen) compare, const(char*) function(void*) name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_comparator_destroy
void leveldb_comparator_destroy(leveldb_comparator_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_create_default_env
leveldb_env_t leveldb_create_default_env()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_create_iterator
leveldb_iterator_t leveldb_create_iterator(leveldb_t db, leveldb_readoptions_t options)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_create_snapshot
const(leveldb_snapshot_t) leveldb_create_snapshot(leveldb_t db)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_delete
void leveldb_delete(leveldb_t db, leveldb_writeoptions_t options, char* key, size_t keylen, char** errptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_destroy_db
void leveldb_destroy_db(leveldb_options_t options, char* name, char** errptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_env_destroy
void leveldb_env_destroy(leveldb_env_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_filterpolicy_create
leveldb_filterpolicy_t leveldb_filterpolicy_create(void* state, void function(void*) destructor, char* function(void*, const const(char)* key_array, const size_t* key_length_array, int num_keys, size_t* filter_length) create_filter, ubyte function(void*, const char* key, size_t length, const char* filter, size_t filter_length) key_may_match, const(char*) function(void*) name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_filterpolicy_create_bloom
leveldb_filterpolicy_t leveldb_filterpolicy_create_bloom(int bits_per_key)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_filterpolicy_destroy
void leveldb_filterpolicy_destroy(leveldb_filterpolicy_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_free
void leveldb_free(void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_get
char* leveldb_get(leveldb_t db, leveldb_readoptions_t options, char* key, size_t keylen, size_t* vallen, char** errptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_iter_destroy
void leveldb_iter_destroy(leveldb_iterator_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_iter_get_error
void leveldb_iter_get_error(leveldb_iterator_t , char** errptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_iter_key
const(char*) leveldb_iter_key(leveldb_iterator_t , size_t* klen)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_iter_next
void leveldb_iter_next(leveldb_iterator_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_iter_prev
void leveldb_iter_prev(leveldb_iterator_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_iter_seek
void leveldb_iter_seek(leveldb_iterator_t , char* k, size_t klen)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_iter_seek_to_first
void leveldb_iter_seek_to_first(leveldb_iterator_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_iter_seek_to_last
void leveldb_iter_seek_to_last(leveldb_iterator_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_iter_valid
ubyte leveldb_iter_valid(leveldb_iterator_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_iter_value
const(char*) leveldb_iter_value(leveldb_iterator_t , size_t* vlen)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_major_version
int leveldb_major_version()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_minor_version
int leveldb_minor_version()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_open
leveldb_t leveldb_open(leveldb_options_t options, char* name, char** errptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_create
leveldb_options_t leveldb_options_create()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_destroy
void leveldb_options_destroy(leveldb_options_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_block_restart_interval
void leveldb_options_set_block_restart_interval(leveldb_options_t , int )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_block_size
void leveldb_options_set_block_size(leveldb_options_t , size_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_cache
void leveldb_options_set_cache(leveldb_options_t , leveldb_cache_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_comparator
void leveldb_options_set_comparator(leveldb_options_t , leveldb_comparator_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_compression
void leveldb_options_set_compression(leveldb_options_t , int )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_create_if_missing
void leveldb_options_set_create_if_missing(leveldb_options_t , ubyte )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_env
void leveldb_options_set_env(leveldb_options_t , leveldb_env_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_error_if_exists
void leveldb_options_set_error_if_exists(leveldb_options_t , ubyte )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_filter_policy
void leveldb_options_set_filter_policy(leveldb_options_t , leveldb_filterpolicy_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_info_log
void leveldb_options_set_info_log(leveldb_options_t , leveldb_logger_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_max_open_files
void leveldb_options_set_max_open_files(leveldb_options_t , int )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_paranoid_checks
void leveldb_options_set_paranoid_checks(leveldb_options_t , ubyte )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_options_set_write_buffer_size
void leveldb_options_set_write_buffer_size(leveldb_options_t , size_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_property_value
char* leveldb_property_value(leveldb_t db, char* propname)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_put
void leveldb_put(leveldb_t db, leveldb_writeoptions_t options, char* key, size_t keylen, char* val, size_t vallen, char** errptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_readoptions_create
leveldb_readoptions_t leveldb_readoptions_create()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_readoptions_destroy
void leveldb_readoptions_destroy(leveldb_readoptions_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_readoptions_set_fill_cache
void leveldb_readoptions_set_fill_cache(leveldb_readoptions_t , ubyte )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_readoptions_set_snapshot
void leveldb_readoptions_set_snapshot(leveldb_readoptions_t , leveldb_snapshot_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_readoptions_set_verify_checksums
void leveldb_readoptions_set_verify_checksums(leveldb_readoptions_t , ubyte )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_release_snapshot
void leveldb_release_snapshot(leveldb_t db, leveldb_snapshot_t snapshot)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_repair_db
void leveldb_repair_db(leveldb_options_t options, char* name, char** errptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_write
void leveldb_write(leveldb_t db, leveldb_writeoptions_t options, leveldb_writebatch_t batch, char** errptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_writebatch_clear
void leveldb_writebatch_clear(leveldb_writebatch_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_writebatch_create
leveldb_writebatch_t leveldb_writebatch_create()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_writebatch_delete
void leveldb_writebatch_delete(leveldb_writebatch_t , char* key, size_t klen)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_writebatch_destroy
void leveldb_writebatch_destroy(leveldb_writebatch_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_writebatch_iterate
void leveldb_writebatch_iterate(leveldb_writebatch_t , void* state, void function(void*, const char* k, size_t klen, const char* v, size_t vlen) put, void function(void*, const char* k, size_t klen) deleted)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_writebatch_put
void leveldb_writebatch_put(leveldb_writebatch_t , char* key, size_t klen, char* val, size_t vlen)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_writeoptions_create
leveldb_writeoptions_t leveldb_writeoptions_create()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_writeoptions_destroy
void leveldb_writeoptions_destroy(leveldb_writeoptions_t )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- leveldb_writeoptions_set_sync
void leveldb_writeoptions_set_sync(leveldb_writeoptions_t , ubyte )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.