comparison OrthancFramework/Sources/Cache/MemoryStringCache.h @ 5426:c65e036d649b

StorageCache is now storing transcoded instances + added ?transcode=... option to the /file route.
author Alain Mazy <am@osimis.io>
date Thu, 16 Nov 2023 16:09:04 +0100
parents d37dff2c0028
children 111e21b4f8bc
comparison
equal deleted inserted replaced
5425:e2c9f9d9700e 5426:c65e036d649b
84 84
85 void SetMaximumSize(size_t size); 85 void SetMaximumSize(size_t size);
86 86
87 void Invalidate(const std::string& key); 87 void Invalidate(const std::string& key);
88 88
89 void InvalidateByPrefix(const std::string& keyPrefix);
89 90
90 private: 91 private:
91 void Add(const std::string& key, 92 void Add(const std::string& key,
92 const std::string& value); 93 const std::string& value);
93 94