| /rocksdb-6.9/utilities/transactions/ |
| D | pessimistic_transaction_db.h | 70 virtual Status Write(const WriteOptions& opts, WriteBatch* updates) override; 72 WriteBatch* updates) { in WriteWithConcurrencyControl() argument 85 Status s = txn_impl->CommitBatch(updates); in WriteWithConcurrencyControl() 215 WriteBatch* updates) override; 216 virtual Status Write(const WriteOptions& opts, WriteBatch* updates) override;
|
| D | pessimistic_transaction_db.cc | 522 WriteBatch* updates) { in Write() argument 523 return WriteWithConcurrencyControl(opts, updates); in Write() 527 WriteBatch* updates) { in Write() argument 529 return db_impl_->Write(opts, updates); in Write() 531 return WriteWithConcurrencyControl(opts, updates); in Write() 537 const TransactionDBWriteOptimizations& optimizations, WriteBatch* updates) { in Write() argument 539 return db_impl_->Write(opts, updates); in Write() 541 return WriteWithConcurrencyControl(opts, updates); in Write()
|
| D | write_prepared_txn_db.cc | 116 WriteBatch* updates) { in Write() argument 121 return WriteInternal(opts, updates, UNKNOWN_BATCH_CNT, NO_TXN); in Write() 123 return PessimisticTransactionDB::WriteWithConcurrencyControl(opts, updates); in Write() 129 const TransactionDBWriteOptimizations& optimizations, WriteBatch* updates) { in Write() argument 138 return WriteInternal(opts, updates, batch_cnt, NO_TXN); in Write() 142 return PessimisticTransactionDB::WriteWithConcurrencyControl(opts, updates); in Write()
|
| D | write_prepared_txn_db.h | 73 Status Write(const WriteOptions& opts, WriteBatch* updates) override; 79 WriteBatch* updates) override;
|
| /rocksdb-6.9/include/rocksdb/utilities/ |
| D | transaction_db.h | 231 WriteBatch* updates) { in Write() argument 234 return Write(opts, updates); in Write()
|
| D | stackable_db.h | 179 virtual Status Write(const WriteOptions& opts, WriteBatch* updates) override { in Write() argument 180 return db_->Write(opts, updates); in Write()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2016-01-29-compaction_pri.markdown | 20 …tributed inside each level. In reality, it is not the case, even if user updates are uniformly dis… 22 If all the updates are uniformly distributed, LevelDB's approach optimizes write amplification, bec… 24 …e same effect. With this mode, we always pick the file covers the oldest updates in the level, whi… 28 We are assuming updates are uniformly distributed across the whole key space in previous analysis. …
|
| D | 2015-02-27-write-batch-with-index.markdown | 16 …updates to a `WriteBatch` by calling `write_batch.Put("key1", "value1")` or `write_batch.Delete("k…
|
| D | 2017-05-14-core-local-stats.markdown | 40 …is prevents the cache line bouncing problem described above. Even though updates to a given value … 77 …ics will be local to each CPU core. Similarly to thread-local, each core updates only its local va…
|
| D | 2015-07-23-dynamic-level.markdown | 23 …hich means database size is stable or grows slowly over time. This means updates will add roughly …
|
| /rocksdb-6.9/utilities/ttl/ |
| D | db_ttl_impl.cc | 270 Status DBWithTTLImpl::Write(const WriteOptions& opts, WriteBatch* updates) { in Write() argument 310 updates->Iterate(&handler); in Write()
|
| D | db_ttl_impl.h | 76 virtual Status Write(const WriteOptions& opts, WriteBatch* updates) override;
|
| /rocksdb-6.9/db/db_impl/ |
| D | db_impl.h | 160 WriteBatch* updates) override; 1083 Status WriteImpl(const WriteOptions& options, WriteBatch* updates, 1090 Status PipelinedWriteImpl(const WriteOptions& options, WriteBatch* updates, 1118 WriteBatch* updates, WriteCallback* callback, uint64_t* log_used,
|
| /rocksdb-6.9/utilities/blob_db/ |
| D | blob_db.h | 197 WriteBatch* updates) override = 0;
|
| D | blob_db_impl.h | 128 virtual Status Write(const WriteOptions& opts, WriteBatch* updates) override;
|
| D | blob_db_impl.cc | 961 Status BlobDBImpl::Write(const WriteOptions& options, WriteBatch* updates) { in Write() argument 973 s = updates->Iterate(&blob_inserter); in Write()
|
| /rocksdb-6.9/java/src/main/java/org/rocksdb/ |
| D | RocksDB.java | 1584 public void write(final WriteOptions writeOpts, final WriteBatch updates) in write() argument 1586 write0(nativeHandle_, writeOpts.nativeHandle_, updates.nativeHandle_); in write() 1599 final WriteBatchWithIndex updates) throws RocksDBException { in write() argument 1600 write1(nativeHandle_, writeOpts.nativeHandle_, updates.nativeHandle_); in write()
|
| /rocksdb-6.9/include/rocksdb/ |
| D | db.h | 386 virtual Status Write(const WriteOptions& options, WriteBatch* updates) = 0;
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 84 * BlobDB no longer updates the SST to blob file mapping upon failed compactions.
|