1
1
cache/cache.cc
2
2
cache/cache_entry_roles.cc
3
3
cache/cache_key.cc
4
+ cache/cache_helpers.cc
4
5
cache/cache_reservation_manager.cc
5
6
cache/charged_cache.cc
6
7
cache/clock_cache.cc
7
- cache/fast_lru_cache.cc
8
8
cache/lru_cache.cc
9
9
cache/compressed_secondary_cache.cc
10
+ cache/secondary_cache.cc
11
+ cache/secondary_cache_adapter.cc
10
12
cache/sharded_cache.cc
11
13
db/arena_wrapped_db_iter.cc
12
14
db/blob/blob_contents.cc
@@ -51,6 +53,7 @@ db/db_impl/db_impl_readonly.cc
51
53
db/db_impl/db_impl_secondary.cc
52
54
db/db_impl/db_impl_write.cc
53
55
db/db_impl/db_spdb_impl_write.cc
56
+ db/db_impl/compact_range_threads_mngr.cc
54
57
db/db_info_dumper.cc
55
58
db/db_iter.cc
56
59
db/dbformat.cc
@@ -94,6 +97,7 @@ db/wide/wide_columns.cc
94
97
db/write_batch.cc
95
98
db/write_batch_base.cc
96
99
db/write_controller.cc
100
+ db/write_stall_stats.cc
97
101
db/write_thread.cc
98
102
env/composite_env.cc
99
103
env/env.cc
@@ -128,6 +132,7 @@ memory/memkind_kmem_allocator.cc
128
132
memory/memory_allocator.cc
129
133
memtable/alloc_tracker.cc
130
134
memtable/hash_linklist_rep.cc
135
+ memtable/hash_spdb_rep.cc
131
136
memtable/hash_skiplist_rep.cc
132
137
memtable/skiplistrep.cc
133
138
memtable/vectorrep.cc
@@ -153,6 +158,7 @@ options/db_options.cc
153
158
options/options.cc
154
159
options/options_helper.cc
155
160
options/options_parser.cc
161
+ port/mmap.cc
156
162
port/port_posix.cc
157
163
port/win/env_default.cc
158
164
port/win/env_win.cc
@@ -169,6 +175,7 @@ table/block_based/block_based_table_factory.cc
169
175
table/block_based/block_based_table_iterator.cc
170
176
table/block_based/block_based_table_reader.cc
171
177
table/block_based/block_builder.cc
178
+ table/block_based/block_cache.cc
172
179
table/block_based/block_prefetcher.cc
173
180
table/block_based/block_prefix_index.cc
174
181
table/block_based/data_block_hash_index.cc
@@ -185,6 +192,7 @@ table/block_based/partitioned_filter_block.cc
185
192
table/block_based/partitioned_index_iterator.cc
186
193
table/block_based/partitioned_index_reader.cc
187
194
table/block_based/reader_common.cc
195
+ table/block_based/table_pinning_policy.cc
188
196
table/block_based/uncompression_dict_reader.cc
189
197
table/block_fetcher.cc
190
198
table/cuckoo/cuckoo_table_builder.cc
@@ -194,6 +202,7 @@ table/format.cc
194
202
table/get_context.cc
195
203
table/iterator.cc
196
204
table/merging_iterator.cc
205
+ table/compaction_merging_iterator.cc
197
206
table/meta_blocks.cc
198
207
table/persistent_cache_helper.cc
199
208
table/plain/plain_table_bloom.cc
@@ -230,6 +239,7 @@ util/compression_context_cache.cc
230
239
util/concurrent_task_limiter_impl.cc
231
240
util/crc32c.cc
232
241
util/crc32c_arm64.cc
242
+ util/data_structure.cc
233
243
util/dynamic_bloom.cc
234
244
util/hash.cc
235
245
util/murmurhash.cc
@@ -311,3 +321,4 @@ utilities/ttl/db_ttl_impl.cc
311
321
utilities/wal_filter.cc
312
322
utilities/write_batch_with_index/write_batch_with_index.cc
313
323
utilities/write_batch_with_index/write_batch_with_index_internal.cc
324
+
0 commit comments