mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
17 lines
414 B
C++
17 lines
414 B
C++
#pragma once
|
|
#include <memory>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
static constexpr int REMOTE_FS_OBJECTS_CACHE_DEFAULT_MAX_CACHE_SIZE = 1024 * 1024 * 1024;
|
|
static constexpr int REMOTE_FS_OBJECTS_CACHE_DEFAULT_MAX_FILE_SEGMENT_SIZE = 100 * 1024 * 1024;
|
|
static constexpr int REMOTE_FS_OBJECTS_CACHE_DEFAULT_MAX_ELEMENTS = 1024 * 1024;
|
|
|
|
class IFileCache;
|
|
using FileCachePtr = std::shared_ptr<IFileCache>;
|
|
|
|
struct FileCacheSettings;
|
|
|
|
}
|