Home
last modified time | relevance | path

Searched refs:optimized (Results 1 – 18 of 18) sorted by relevance

/rocksdb-6.9/env/
Dfs_posix.cc880 FileOptions optimized = file_options; in OptimizeForLogWrite() local
881 optimized.use_mmap_writes = false; in OptimizeForLogWrite()
882 optimized.use_direct_writes = false; in OptimizeForLogWrite()
887 optimized.fallocate_with_keep_size = true; in OptimizeForLogWrite()
888 optimized.writable_file_max_buffer_size = in OptimizeForLogWrite()
890 return optimized; in OptimizeForLogWrite()
895 FileOptions optimized = file_options; in OptimizeForManifestWrite() local
896 optimized.use_mmap_writes = false; in OptimizeForManifestWrite()
897 optimized.use_direct_writes = false; in OptimizeForManifestWrite()
898 optimized.fallocate_with_keep_size = true; in OptimizeForManifestWrite()
[all …]
/rocksdb-6.9/port/win/
Denv_win.cc1094 EnvOptions optimized(env_options); in OptimizeForLogWrite() local
1101 optimized.use_mmap_writes = false; in OptimizeForLogWrite()
1105 return optimized; in OptimizeForLogWrite()
1110 EnvOptions optimized(env_options); in OptimizeForManifestWrite() local
1111 optimized.use_mmap_writes = false; in OptimizeForManifestWrite()
1112 optimized.use_direct_reads = false; in OptimizeForManifestWrite()
1113 return optimized; in OptimizeForManifestWrite()
1118 EnvOptions optimized(env_options); in OptimizeForManifestRead() local
1119 optimized.use_mmap_writes = false; in OptimizeForManifestRead()
1120 optimized.use_direct_reads = false; in OptimizeForManifestRead()
[all …]
/rocksdb-6.9/
Dthirdparty.inc42 set(GFLAGS_LIBS debug ${GFLAGS_LIB_DEBUG} optimized ${GFLAGS_LIB_RELEASE})
81 set(SNAPPY_LIBS debug ${SNAPPY_LIB_DEBUG} optimized ${SNAPPY_LIB_RELEASE})
121 set(LZ4_LIBS debug ${LZ4_LIB_DEBUG} optimized ${LZ4_LIB_RELEASE})
160 set(ZLIB_LIBS debug ${ZLIB_LIB_DEBUG} optimized ${ZLIB_LIB_RELEASE})
220 set(ZSTD_LIBS debug ${ZSTD_LIB_DEBUG} optimized ${ZSTD_LIB_RELEASE})
258 set(JEMALLOC_LIBS debug ${JEMALLOC_LIB_DEBUG} optimized ${JEMALLOC_LIB_RELEASE})
DROCKSDB_LITE.md10 * No special-purpose memtables that are highly optimized for specific use cases
DINSTALL.md23 * By default the binary we produce is optimized for the platform you're compiling on
DWINDOWS_PORT.md10 RocksDB is a well proven open source key-value persistent store, optimized for fast storage. It pro…
DCMakeCache.txt334 //Build optimized debug build with MSVC
DCMakeLists.txt382 option(OPTDBG "Build optimized debug build with MSVC" OFF)
DHISTORY.md706 * Introduce DB::DeleteRange for optimized deletion of large ranges of contiguous keys.
1113 * A new SST format "PlainTable" is added, which is optimized for memory-only workloads. It can be c…
1136 and is optimized for doing sequential reads.
/rocksdb-6.9/docs/_posts/
D2014-04-07-rocksdb-2-8-release.markdown18 …* Added a new table format called PlainTable, which is optimized for RAM storage (ramfs or tmpfs).…
21 …* New prefixed memtable format HashLinkedList, which is optimized for cases where there are only a…
D2017-01-06-rocksdb-5-0-1-released.markdown12 * Introduce DB::DeleteRange for optimized deletion of large ranges of contiguous keys.
D2019-03-08-format-version-4.markdown8 …l` for the size of _restart intervals_. `format_version=`3,4 offer more optimized, backward-compat…
D2014-09-12-cuckoo.markdown12 …://en.wikipedia.org/wiki/Cuckoo_hashing) based SST file format which is optimized for fast point l…
D2015-07-17-spatial-indexing-in-rocksdb.markdown14 …bly high-end machine. Thus, we also decided to build a spatial database optimized for memory-resid…
D2014-05-14-lock.markdown51 (2) [New PlainTable format](//github.com/facebook/rocksdb/wiki/PlainTable-Format) (optimized for SS…
/rocksdb-6.9/db/
Ddb_test_util.h404 EnvOptions optimized = soptions; in NewWritableFile() local
407 optimized.use_mmap_writes = false; in NewWritableFile()
408 optimized.use_direct_writes = false; in NewWritableFile()
411 Status s = target()->NewWritableFile(f, r, optimized); in NewWritableFile()
/rocksdb-6.9/docs/_data/
Dfeatures.yml8 …RocksDB is optimized for fast, low latency storage such as flash drives and high-speed disk drives…
/rocksdb-6.9/docs/_docs/
Dfaq.md44 [MyRocks](https://code.facebook.com/posts/190251048047090/myrocks-a-space-and-write-optimized-mysql…