| 106 | } |
| 107 | |
| 108 | TupleCacheMgr::TupleCacheMgr(MetricGroup* metrics) |
| 109 | : TupleCacheMgr(FLAGS_tuple_cache, FLAGS_tuple_cache_eviction_policy, metrics, |
| 110 | /* debug_pos */ 0, FLAGS_tuple_cache_sync_pool_size, |
| 111 | FLAGS_tuple_cache_sync_pool_queue_depth, |
| 112 | FLAGS_tuple_cache_outstanding_write_limit, |
| 113 | FLAGS_tuple_cache_outstanding_write_chunk_bytes) {} |
| 114 | |
| 115 | TupleCacheMgr::TupleCacheMgr( |
| 116 | string cache_config, string eviction_policy_str, MetricGroup* metrics, |
nothing calls this directly
no test coverage detected