xiaokang commented on code in PR #16003: URL: https://github.com/apache/doris/pull/16003#discussion_r1071954739
########## be/src/common/config.h: ########## @@ -875,6 +875,16 @@ CONF_String(disposable_file_cache_path, ""); CONF_Int64(file_cache_max_file_segment_size, "4194304"); // 4MB CONF_Bool(clear_file_cache, "false"); CONF_Bool(enable_file_cache_query_limit, "false"); + +// inverted index searcher cache +// cache entry stay time after lookup, default 1h +CONF_mInt32(index_cache_entry_stay_time_after_lookup_s, "3600"); +// inverted index searcher cache size +CONF_String(inverted_index_searcher_cache_limit, "10%"); +// set `true` to enable insert searcher into cache when write inverted index data +CONF_Bool(enable_write_index_searcher_cache, "true"); +CONF_Bool(enable_index_cache_check_timestamp, "true"); + Review Comment: use inverted_index_ prefix for all inverted index related config -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
