ClickHouse/src/Common/FileCacheFactory.h

28 lines
594 B
C++
Raw Normal View History

2022-01-13 11:57:56 +00:00
#pragma once
#include <boost/noncopyable.hpp>
#include <unordered_map>
#include <Common/FileCache_fwd.h>
namespace DB
{
/**
* Creates a FileCache object for cache_base_path.
*/
class FileCacheFactory final : private boost::noncopyable
{
public:
static FileCacheFactory & instance();
FileCachePtr getOrCreate(const std::string & cache_base_path, size_t max_size, size_t max_elements_size);
private:
FileCachePtr getImpl(const std::string & cache_base_path, std::lock_guard<std::mutex> &);
std::mutex mutex;
std::unordered_map<std::string, FileCachePtr> caches;
};
}