Home
last modified time | relevance | path

Searched refs:updates (Results 1 – 19 of 19) sorted by relevance

/rocksdb-6.9/utilities/transactions/
Dpessimistic_transaction_db.h70 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;
Dpessimistic_transaction_db.cc522 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()
Dwrite_prepared_txn_db.cc116 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()
Dwrite_prepared_txn_db.h73 Status Write(const WriteOptions& opts, WriteBatch* updates) override;
79 WriteBatch* updates) override;
/rocksdb-6.9/include/rocksdb/utilities/
Dtransaction_db.h231 WriteBatch* updates) { in Write() argument
234 return Write(opts, updates); in Write()
Dstackable_db.h179 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/
D2016-01-29-compaction_pri.markdown20 …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. …
D2015-02-27-write-batch-with-index.markdown16updates to a `WriteBatch` by calling `write_batch.Put("key1", "value1")` or `write_batch.Delete("k…
D2017-05-14-core-local-stats.markdown40 …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…
D2015-07-23-dynamic-level.markdown23 …hich means database size is stable or grows slowly over time. This means updates will add roughly …
/rocksdb-6.9/utilities/ttl/
Ddb_ttl_impl.cc270 Status DBWithTTLImpl::Write(const WriteOptions& opts, WriteBatch* updates) { in Write() argument
310 updates->Iterate(&handler); in Write()
Ddb_ttl_impl.h76 virtual Status Write(const WriteOptions& opts, WriteBatch* updates) override;
/rocksdb-6.9/db/db_impl/
Ddb_impl.h160 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/
Dblob_db.h197 WriteBatch* updates) override = 0;
Dblob_db_impl.h128 virtual Status Write(const WriteOptions& opts, WriteBatch* updates) override;
Dblob_db_impl.cc961 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/
DRocksDB.java1584 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/
Ddb.h386 virtual Status Write(const WriteOptions& options, WriteBatch* updates) = 0;
/rocksdb-6.9/
DHISTORY.md84 * BlobDB no longer updates the SST to blob file mapping upon failed compactions.