Home
last modified time | relevance | path

Searched refs:OS (Results 1 – 12 of 12) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/util/
DEnvironment.java8 private static String OS = System.getProperty("os.name").toLowerCase(); field in Environment
34 return (OS.contains("win")); in isWindows()
38 return (OS.contains("freebsd")); in isFreeBSD()
42 return (OS.contains("mac")); in isMac()
46 return OS.contains("aix"); in isAix()
50 return OS.contains("nix") || in isUnix()
51 OS.contains("nux"); in isUnix()
59 return OS.contains("sunos"); in isSolaris()
63 return (OS.contains("openbsd")); in isOpenBSD()
128 …tring.format("Cannot determine JNI library name for ARCH='%s' OS='%s' name='%s'", ARCH, OS, name)); in getJniLibraryName()
/rocksdb-6.9/build_tools/
Dmake_package.sh26 platform OS
29 if [[ $OS = "ubuntu" ]]; then
36 elif [[ $OS = "centos" ]]; then
47 if [[ $OS = "ubuntu" ]]; then
49 elif [[ $OS = "centos" ]]; then
72 if [[ $OS = "ubuntu" ]]; then
81 elif [[ $OS = "centos" ]]; then
/rocksdb-6.9/docs/_posts/
D2017-08-25-flushwal.markdown8 …t RocksDB automatically flushes the WAL from the application memory to the OS buffer after each `:…
16 …ep is "flushed" to OS buffer by calling fwrite syscall. The OS buffer is later "synced" to the per…
24 …s explaiend above, by default incures the latency of flushing the WAL new appends to the OS buffer.
D2015-11-16-analysis-file-read-latency-by-level.markdown10 …es of RocksDB, people rely on OS page cache for caching compressed data. With this approach, verif…
12OS page cache, expecting level 0, 1 and 2 are mostly cached in memory, leaving only reads from lev…
150 …learly shown among those reads. This will be helpful for users to analysis OS page cache efficienc…
D2017-05-12-partitioned-index-filter.markdown28 … that is present to a node with 100TB of data by using direct IO (skipping OS file cache) and a ve…
32 … in presence of other DBs on the same node by by using direct IO (skipping OS file cache) and bloc…
D2016-02-25-rocksdb-ama.markdown17 * Direct I/O to bypass OS cache
/rocksdb-6.9/tools/
Dpflag16 OS=`/bin/uname -s`
31 case ${OS} in
38 die "Unsupported OS ${OS}. Send a bug report with OS you need supported. Thanks."
/rocksdb-6.9/
DWINDOWS_PORT.md17 ## OS specifics
18 …e is not a specific API we used during porting that is unsupported on other Windows OS after Vista.
40 We had to make some minimum changes within the portable files that either account for OS difference…
61 * Set `use_os_buffer=false` to disable OS disk buffering for WinWritableFile and WinRandomAccessFil…
69 …hosen `use_os_buffer=false` to disable OS disk buffering for `WinWritableFile` and `WinRandomAcce…
DINSTALL.md104 * **OS X**:
DHISTORY.md53 …on and Env::Default() API will continue to be used for threading and other OS related functions, a…
1142 * Supported additional Linux platform flavors and Mac OS.
/rocksdb-6.9/docs/
DREADME.md19 > Ruby >= 2.2 is required for the gems. On the latest versions of Mac OS X, Ruby 2.0 is the
21 > version of Ruby for your Mac OS X system.
/rocksdb-6.9/docs/_docs/
Dfaq.md20 …ze of RAM on the test machine – where the entire database could fit in the OS page cache. When we …
22 …e latency to be tremendously large. We found that mmap-ing a file into the OS cache introduced per…