Home
last modified time | relevance | path

Searched refs:changed (Results 1 – 13 of 13) sorted by relevance

/rocksdb-6.9/utilities/cassandra/
Dcassandra_format_test.cc327 bool changed = false; in TEST() local
328 auto purged = row_value.RemoveExpiredColumns(&changed); in TEST()
329 EXPECT_TRUE(changed); in TEST()
335 purged.RemoveExpiredColumns(&changed); in TEST()
336 EXPECT_FALSE(changed); in TEST()
349 bool changed = false; in TEST() local
350 auto compacted = row_value.ConvertExpiredColumnsToTombstones(&changed); in TEST()
351 EXPECT_TRUE(changed); in TEST()
358 compacted.ConvertExpiredColumnsToTombstones(&changed); in TEST()
359 EXPECT_FALSE(changed); in TEST()
Dformat.cc245 RowValue RowValue::RemoveExpiredColumns(bool* changed) const { in RemoveExpiredColumns()
246 *changed = false; in RemoveExpiredColumns()
254 *changed = true; in RemoveExpiredColumns()
264 RowValue RowValue::ConvertExpiredColumnsToTombstones(bool* changed) const { in ConvertExpiredColumnsToTombstones()
265 *changed = false; in ConvertExpiredColumnsToTombstones()
275 *changed = true; in ConvertExpiredColumnsToTombstones()
Dformat.h166 RowValue RemoveExpiredColumns(bool* changed) const;
167 RowValue ConvertExpiredColumnsToTombstones(bool* changed) const;
/rocksdb-6.9/docs/_posts/
D2014-09-15-rocksdb-3-5-release.markdown29 …k_restart_interval, filter_policy, whole_key_filtering. filter_policy is changed to shared_ptr fro…
D2017-06-26-17-level-based-changes.markdown16 …d can be scheduled even when L1 files are locked, unlike L0->L1. We also changed the L0->L1 pickin…
50 So, we changed the L0->L1 picking algorithm to start from the oldest file and expand towards newer …
D2015-07-23-dynamic-level.markdown29 …action_dynamic_level_bytes=true. In this mode, size target of levels are changed dynamically based…
D2014-05-14-lock.markdown88 …t is mainly about optimizations in implementation. The RocksDB consistency semantic is not changed.
/rocksdb-6.9/
DREADME.md25 internal APIs may be changed without warning.
DHISTORY.md379 * The default value of NewBloomFilterPolicy()'s argument use_block_based_builder is changed to fals…
428 …a `CreateDBStatistics()`, the format of the string returned by its `ToString()` method has changed.
452 * The background thread naming convention changed (on supporting platforms) to "rocksdb:<thread poo…
468 …om ImmutableCFOptions to MutableCFOptions, meaning it can be dynamically changed without a DB rest…
565 * `DBOptions::writable_file_max_buffer_size` can now be changed dynamically.
566 …mpaction_readahead_size`, and `DBOptions::wal_bytes_per_sync` can now be changed dynamically, `DBO…
723 * DB::GetOptions() reflect dynamic changed options (i.e. through DB::SetOptions()) and return copy …
899 * DB::CompactRange()'s parameter reduce_level is changed to change_level, to allow users to move le…
904 …el0_slowdown_writes_trigger is triggered, the way to slow down writes is changed to: write rate to…
1005 …r system of stalling writes. Any stall-related statistics' meanings are changed. Instead of per-w…
[all …]
DLICENSE.Apache99 stating that You changed the files; and
DCOPYING96 stating that you changed the files and the date of any change.
/rocksdb-6.9/docs/
DREADME.md73 Occasionally that gem might get updated with new or changed functionality. If that is the case,
/rocksdb-6.9/utilities/
Denv_librados.md57 …g under default env drops to arround 1s. But the time of writing under EnvLibrados is not changed.