Home
last modified time | relevance | path

Searched refs:create (Results 1 – 25 of 30) sorted by relevance

12

/rocksdb-6.9/java/src/test/java/org/rocksdb/
DCheckPointTest.java32 try (final Checkpoint checkpoint = Checkpoint.create(db)) { in checkPoint()
62 try (final Checkpoint checkpoint = Checkpoint.create(null)) { in failIfDbIsNull()
72 Checkpoint.create(db); in failIfDbNotInitialized()
79 final Checkpoint checkpoint = Checkpoint.create(db)) { in failWithIllegalPath()
/rocksdb-6.9/tools/advisor/test/
Dtest_db_log_parser.py67 condition1 = LogCondition.create(Condition('cond-A'))
70 condition2 = LogCondition.create(Condition('cond-B'))
73 condition3 = LogCondition.create(Condition('cond-C'))
Dtest_db_stats_fetcher.py40 cond1 = TimeSeriesCondition.create(cond1)
58 cond1 = TimeSeriesCondition.create(cond1)
85 cond1 = TimeSeriesCondition.create(cond1)
Dtest_db_options_parser.py166 cond1 = OptionCondition.create(cond1)
180 cond2 = OptionCondition.create(cond2)
194 cond3 = OptionCondition.create(cond3)
/rocksdb-6.9/tools/advisor/advisor/
Drule_parser.py318 def create(cls, base_condition): member in LogCondition
342 def create(cls, base_condition): member in OptionCondition
374 def create(cls, base_condition): member in TimeSeriesCondition
477 new_cond = LogCondition.create(new_cond)
479 new_cond = OptionCondition.create(new_cond)
481 new_cond = TimeSeriesCondition.create(new_cond)
/rocksdb-6.9/tools/
Dauto_sanity_test.sh50 ./new_db_sanity_test $dir_new create
66 ./old_db_sanity_test $dir_old create
/rocksdb-6.9/docs/_posts/
D2015-07-17-spatial-indexing-in-rocksdb.markdown18 … features we need for each tile. We need to know the map style before we create the database. Howe…
22create a spatial database, you specify the spatial indexes that need to be built. Each spatial ind…
D2015-01-16-migrating-from-leveldb-to-rocksdb-2.markdown84 …::BlockBasedTableOptions, which is used to create a TableFactory object that RocksDB uses internal…
D2014-03-27-how-to-backup-rocksdb.markdown28 This simple example will create a backup of your DB in "/tmp/rocksdb_backup". Creating new Backupab…
73 Backups are incremental. You can create a new backup with `CreateNewBackup()` and only the new data…
77 … your database, newly created backup will delete old backups 3 and 4 and create new backup 3 on to…
D2015-02-27-write-batch-with-index.markdown16 …teBatch` object from it and issue `db->Write()`. Additionally, users can create an iterator of a W…
18 …ing `WriteBatchWithIndex`, every time the user creates a transaction, we create a `WriteBatchWithI…
D2017-06-29-rocksdb-5-5-1-released.markdown14 * Added DB::CreateColumnFamilie() and DB::DropColumnFamilies() to bulk create/drop column families.
D2016-02-24-rocksdb-4-2-release.markdown15 1. Introduce CreateLoggerFromOptions(), this function create a Logger for provided DBOptions.
D2017-05-26-rocksdb-5-4-5-released.markdown22 * Added DB::CreateColumnFamilie() and DB::DropColumnFamilies() to bulk create/drop column families.
D2015-11-10-use-checkpoints-for-efficient-snapshots.markdown15 The Checkpoint feature enables RocksDB to create a consistent snapshot of a given RocksDB database …
D2017-02-17-bulkoad-ingest-sst-file.markdown12 - We create a new entry for the new key/value in our in-memory structure (memtable / SkipList by de…
D2016-04-26-rocksdb-4-5-1-released.markdown29 …anager. Use NewSstFileManager() in include/rocksdb/sst_file_manager.h to create a SstFileManager t…
D2016-07-26-rocksdb-4-8-released.markdown21 …* Add ReadOptions::readahead_size. If non-zero, NewIterator will create a new table reader which p…
D2018-11-21-delete-range.markdown222 For range scans, we create iterators over all the fragmented range
225 advancing range tombstone iterators as necessary. In effect, we implicitly create a skyline.
283 Another future optimization is to create a new format version that requires range tombstones to
D2014-05-14-lock.markdown45 … them. Besides malloc, some of those iterators can be quite expensive to create, like sorting. Now…
69 1. create a separate directory on the same host for a snapshot of the DB.
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DCheckpoint.java26 public static Checkpoint create(final RocksDB db) { in create() method in Checkpoint
/rocksdb-6.9/
DCONTRIBUTING.md17 e-mail or create a new github issue to request the CLA in PDF format.
DRocksDBConfigVersion.cmake3 # to create a version-file which can be installed along a config.cmake file.
DCMakeCache.txt467 //Major version of cmake used to create the current loaded cache
469 //Minor version of cmake used to create the current loaded cache
471 //Patch version of cmake used to create the current loaded cache
/rocksdb-6.9/docs/
DCONTRIBUTING.md74 …e.md` for an example of the YAML format. **If the `./_posts` directory does not exist, create it**.
86 …or an example of the YAML header format. **If the `./_docs/` directory does not exist, create it**.
DTEMPLATE-INFORMATION.md15 … and `_data/powered_by_highlight.yml` files. Both these files combine to create a section on the h…

12