Home
last modified time | relevance | path

Searched refs:call (Results 1 – 22 of 22) sorted by relevance

/rocksdb-6.9/docs/_posts/
D2014-03-27-how-to-backup-rocksdb.markdown73 …tails). Once you have more backups saved, you can issue `GetBackupInfo()` call to get a list of al…
75call `PurgeOldBackups(N)`, where N is how many backups you'd like to keep. All backups except the …
101 When you call `BackupableDB::CreateNewBackup()`, it does the following:
119 … set to false, we also need to copy log files to the backup directory. We call `GetSortedWalFiles(…
D2017-08-25-flushwal.markdown8 …however can be configured to perform the flush manually after an explicit call to `::FlushWAL`. No…
16 …e application crash. By default, the flush occurs automatically upon each call to `DB::Put` or `DB…
D2015-02-27-write-batch-with-index.markdown16 …imilar as calling RocksDB's functions of the same names. In the end, they call `db->Write(write_ba…
18 …saction, we atomically write the batch to RocksDB. When the user wants to call `Get()`, we first c…
D2016-03-07-rocksdb-options-file.markdown12 …y persist its current set of options into an INI file on every successful call of DB::Open(), SetO…
D2014-05-14-lock.markdown70 1. call `DB::DisableFileDeletions()`
71 1. call `DB::GetLiveFiles()` to get a full list of the files.
74 1. call `DB::EnableFileDeletions()`
D2017-02-17-bulkoad-ingest-sst-file.markdown10 One of the basic operations of RocksDB is writing to RocksDB, Writes happen when user call (DB::Put…
D2017-12-18-17-auto-tuned-rate-limiter.markdown12 …bled simply by passing `auto_tuned=true` in the `NewGenericRateLimiter()` call. In this case `rate…
D2016-07-26-rocksdb-4-8-released.markdown32 …iki/RocksDB-Options-File) for how to use RocksDB option files. Or you can call Options.OldDefaults…
D2014-09-12-cuckoo.markdown71 …upied, we skip over to next hash function _h2_ and repeat the process. We call the set of _t_ buck…
D2015-07-17-spatial-indexing-in-rocksdb.markdown52 After you're done inserting all the features, you can call an API Compact() that will compact the d…
D2017-12-19-write-prepared-txn.markdown25 …from `prepare_seq` to `commit_seq` in an in-memory data structure that we call _CommitCache_. When…
D2018-11-21-delete-range.markdown63 of keys would be (1) simple, i.e., a single API call; (2) synchronous, i.e.,
64 when the call finishes, the keys are guaranteed to be wiped from the DB; (3) low
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DWriteBatchThreadedTest.java61 public Void call() throws RocksDBException { in threadedWrites()
/rocksdb-6.9/build_tools/
Dprecommit_checker.py64 status = subprocess.call("cd %s; %s" % (path, cmd), shell=True,
/rocksdb-6.9/java/
DHISTORY-JAVA.md6 * Added CappedPrefixExtractor support. To use such extractor, simply call useCappedPrefixExtractor…
/rocksdb-6.9/tools/advisor/advisor/
Ddb_bench_runner.py195 subprocess.call(command, shell=True, stdout=out_file, stderr=err_file)
Ddb_stats_fetcher.py216 subprocess.call(command, shell=True, stdout=out_file, stderr=err_file)
/rocksdb-6.9/docs/_docs/
Dgetting-started.md33 … an error if the database already exists, add the following line before the rocksdb::DB::Open call:
/rocksdb-6.9/tools/rdb/
DAPI.md64 # this method to check if a value existed before the call to `delete`.
/rocksdb-6.9/
DHISTORY.md86 …selves instead of only the column family IDs when checking whether an API call uses the default co…
147call to BackupEngine::PurgeOldBackups or BackupEngine::DeleteBackup suffered a crash, power failur…
192 * LDBCommandRunner::RunCommand() to return the status code as an integer, rather than call exit() u…
330 …ith assume_tracked with default value of false. If true it indicates that call is assumed to be af…
555 …etes if they have sequence number larger than what was set by the new API call `DB::SetPreserveDel…
556 …PI call `DB::SetPreserveDeletesSequenceNumber(SequenceNumber seqnum)` was added, users who wish to…
785 …wiki/RocksDB-Options-File for how to use RocksDB option files. Or you can call Options.OldDefaults…
901 …oads with WAL disabled, the changes which haven't been flushed before the call to CancelAllBackgro…
DWINDOWS_PORT.md69 …ahead log via `fadvise` mechanism. Windows does not have `fadvise` system call. What is more, it i…
/rocksdb-6.9/java/benchmark/src/main/java/org/rocksdb/benchmark/
DDbBenchmark.java186 @Override public Stats call() throws RocksDBException { in call() method in DbBenchmark.BenchmarkTask