#include #include constexpr auto KEY_KG_CONFIG = "store_config"; namespace store::store_cache { std::optional get_store_config() { try { const auto config_json = koalabox::cache::read_from_cache(KEY_KG_CONFIG); return config_json.get(); } catch (const Exception& e) { LOG_ERROR("Failed to get cached store_mode config: {}", e.what()) return std::nullopt; } } bool save_store_config(const StoreConfig& config) { try { LOG_DEBUG("Caching store_mode config") return koalabox::cache::save_to_cache(KEY_KG_CONFIG, Json(config)); } catch (const Exception& e) { LOG_ERROR("Failed to cache store_mode config: {}", e.what()) return false; } } }