mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-29 11:10:40 +00:00
sstable::get_filename() constructs the filename from components, which takes some work. It happens to be called on every index_reader::index_reader() call even though it's only used for TRACE logs. That's 1700 instructions (~1% of a full query) wasted on every SSTable read. Fix that. Closes #11485