aboutsummaryrefslogtreecommitdiff
path: root/zenserver/cache/cachestore.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Removed unused KV cache related codeStefan Boberg2021-09-261-252/+0
|
* Changed logging implementationStefan Boberg2021-09-151-8/+8
| | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function
* Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it ↵Stefan Boberg2021-09-151-1/+1
| | | | easier to tweak implementation
* Fixed up legacy cache store for CRC32 function renameStefan Boberg2021-05-241-2/+2
|
* Moved CRC32 compute into separate cpp/h to enable usage outside of the retro ↵Stefan Boberg2021-05-241-291/+3
| | | | cache
* Split out structured cache store code into dedicated cpp/h pairStefan Boberg2021-05-221-558/+10
|
* Structured cache changesStefan Boberg2021-05-221-200/+32
| | | | | - Changed cachestore to use BasicFile and TCasLog instead of local variants - Added structured cache persistence tests
* Fixed up PutLargeObject() error handlingStefan Boberg2021-05-211-14/+26
|
* Partial refactoring of structured cache implementation - WIPStefan Boberg2021-05-211-14/+14
|
* WIP structured cache endpoints - tactical check-in not fully functional yetStefan Boberg2021-05-201-0/+5
|
* Added paths as context to I/O error exception messagesStefan Boberg2021-05-111-2/+6
|
* Adding zenservice codeStefan Boberg2021-05-111-0/+1235