aboutsummaryrefslogtreecommitdiff
path: root/zenserver/cache/structuredcache.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | Clang format fix.Per Larsson2021-09-211-1/+1
|/
* Added more scrub stubs in higher level servicesStefan Boberg2021-09-201-0/+7
|
* clang-formatStefan Boberg2021-09-201-16/+12
|
* Resolved merge from mainStefan Boberg2021-09-201-21/+37
|\
| * Respect skip attachments when retrieved from upstream cache.Per Larsson2021-09-201-0/+12
| |
| * Added support for skipping package attachments.Per Larsson2021-09-201-21/+25
| |
* | Moved more code into zen namespace, for consistencyStefan Boberg2021-09-201-66/+66
|/ | | | Also removed snapshot_manifest (remnants of vfs prototype)
* Initial support for cache policies.Per Larsson2021-09-171-15/+136
|
* zcache - minor cleanup.Per Larsson2021-09-161-28/+24
|
* Compact binary package caching support (#9)Per Larsson2021-09-161-116/+314
|
* Changed logging implementationStefan Boberg2021-09-151-39/+35
| | | | | | * 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
* Changed so more loggers go via the zen::loggers interfaceStefan Boberg2021-09-151-3/+3
|
* Implemented generic CbPackage attachments filteringStefan Boberg2021-09-131-22/+1
| | | | Package transmission will also need to be updated (up next) for the new scheme to be effective
* clang-format fixesStefan Boberg2021-09-121-2/+6
|
* HttpResponse enum -> HttpResponseCodeStefan Boberg2021-09-121-18/+18
| | | | Also removed initial CbPackage API HttpServer changes as I have decided to take a different approach
* clang-formatStefan Boberg2021-09-091-1/+1
|
* Factored out http server related code into zenhttp module since it feels out ↵Stefan Boberg2021-09-091-1/+1
| | | | of place in zencore
* Zen upstream support (#7)Per Larsson2021-09-031-19/+17
|
* Removed #pragma once from cpp files (copy pasta fail)Stefan Boberg2021-09-031-2/+0
|
* IoHash::HashMemory -> IoHash::HashBuffer for consistency with UE5 codeStefan Boberg2021-09-021-2/+2
|
* Asynchronous upstream caching to JupiterPer Larsson2021-08-311-176/+167
| | | | Co-authored-by: Stefan Boberg <[email protected]>
* added 'zen drop' command to drop cache buckets onlineStefan Boberg2021-08-171-3/+9
| | | | also cleaned up the server side implementation a bit
* Implemented support for dropping z$ buckets while onlineStefan Boberg2021-08-171-1/+47
|
* Implemented flush operations for cache servicesStefan Boberg2021-08-121-17/+167
| | | | Also implemented basic upstream query interface, which needs a bit more work to be fully functional (chunk propagation / fetching and new propagation policies as per DDC requirements)
* Validate that structured cache bucket identifiers are alphanumericStefan Boberg2021-06-171-0/+6
|
* clang-format fixesStefan Boberg2021-05-271-2/+4
|
* Structured cache now verifies attachment payloadsStefan Boberg2021-05-251-14/+22
|
* Added guards against zero-sized PUTs to structured cacheStefan Boberg2021-05-241-0/+10
|
* Added CidStore, currently used to track relationships between compressed and ↵Stefan Boberg2021-05-241-3/+7
| | | | | | uncompressed chunk hashes This first implementation is in-memory only, persistence is next
* Validate payloads using embedded CompressedBuffer hashStefan Boberg2021-05-241-2/+5
|
* Fixed attachment index code so it doesn't generate zero-sized compactbinary ↵Stefan Boberg2021-05-241-9/+13
| | | | arrays (which are disallowed)
* Implemented new URI addressing scheme for the Zen cache endpoints, and ↵Stefan Boberg2021-05-231-18/+137
| | | | prepared for additional indexing capabilities
* Split out structured cache store code into dedicated cpp/h pairStefan Boberg2021-05-221-1/+1
|
* Partial refactoring of structured cache implementation - WIPStefan Boberg2021-05-211-12/+49
|
* WIP structured cache endpoints - tactical check-in not fully functional yetStefan Boberg2021-05-201-1/+46
|
* Adding zenservice codeStefan Boberg2021-05-111-0/+129