mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
17 lines
711 B
C++
17 lines
711 B
C++
|
#include "FileCacheSettings.h"
|
||
|
|
||
|
#include <Poco/Util/AbstractConfiguration.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
void FileCacheSettings::loadFromConfig(const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix)
|
||
|
{
|
||
|
max_cache_size = config.getUInt64(config_prefix + ".data_cache_max_size", REMOTE_FS_OBJECTS_CACHE_DEFAULT_MAX_CACHE_SIZE);
|
||
|
max_cache_elements = config.getUInt64(config_prefix + ".data_cache_max_elements", REMOTE_FS_OBJECTS_CACHE_DEFAULT_MAX_ELEMENTS);
|
||
|
max_file_segment_size = config.getUInt64(config_prefix + ".max_file_segment_size", REMOTE_FS_OBJECTS_CACHE_DEFAULT_MAX_FILE_SEGMENT_SIZE);
|
||
|
cache_on_insert = config.getUInt64(config_prefix + ".cache_on_insert", false);
|
||
|
}
|
||
|
|
||
|
}
|