| 19 | }; |
| 20 | |
| 21 | StorageCache::StorageCache(IStorage *storage, bool fCache) |
| 22 | : m_spstorage(storage) |
| 23 | { |
| 24 | if (!g_pserver->flash_disable_key_cache && fCache) |
| 25 | m_pdict = dictCreate(&dbStorageCacheType, nullptr); |
| 26 | } |
| 27 | |
| 28 | StorageCache::~StorageCache() |
| 29 | { |
nothing calls this directly
no test coverage detected