| 549 | } |
| 550 | |
| 551 | void TupleCacheMgr::StoreMetadataForTupleCache( |
| 552 | const string& cache_key, const string& fragment_id) { |
| 553 | std::lock_guard<std::mutex> l(debug_dump_lock_); |
| 554 | DebugDumpCacheMetaData& cache = debug_dump_caches_metadata_[cache_key]; |
| 555 | cache.fragment_id = fragment_id; |
| 556 | } |
| 557 | |
| 558 | string TupleCacheMgr::GetFragmentIdForTupleCache(const string& cache_key) { |
| 559 | std::lock_guard<std::mutex> l(debug_dump_lock_); |