| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Clang format fix. | Per Larsson | 2021-09-21 | 1 | -1/+1 | |
| |/ | ||||||
| * | Added more scrub stubs in higher level services | Stefan Boberg | 2021-09-20 | 4 | -4/+43 | |
| | | ||||||
| * | clang-format | Stefan Boberg | 2021-09-20 | 1 | -16/+12 | |
| | | ||||||
| * | Resolved merge from main | Stefan Boberg | 2021-09-20 | 1 | -21/+37 | |
| |\ | ||||||
| | * | Respect skip attachments when retrieved from upstream cache. | Per Larsson | 2021-09-20 | 1 | -0/+12 | |
| | | | ||||||
| | * | Added support for skipping package attachments. | Per Larsson | 2021-09-20 | 1 | -21/+25 | |
| | | | ||||||
| * | | Moved more code into zen namespace, for consistency | Stefan Boberg | 2021-09-20 | 4 | -134/+136 | |
| |/ | | | | Also removed snapshot_manifest (remnants of vfs prototype) | |||||
| * | Initial support for cache policies. | Per Larsson | 2021-09-17 | 2 | -17/+139 | |
| | | ||||||
| * | zcache - minor cleanup. | Per Larsson | 2021-09-16 | 1 | -28/+24 | |
| | | ||||||
| * | Compact binary package caching support (#9) | Per Larsson | 2021-09-16 | 1 | -116/+314 | |
| | | ||||||
| * | Fixed logging in structured cache (did not end up getting routed right) | Stefan Boberg | 2021-09-16 | 1 | -0/+1 | |
| | | ||||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 3 | -50/+46 | |
| | | | | | | | * 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 Boberg | 2021-09-15 | 3 | -3/+3 | |
| | | | | | easier to tweak implementation | |||||
| * | Changed so more loggers go via the zen::loggers interface | Stefan Boberg | 2021-09-15 | 2 | -5/+8 | |
| | | ||||||
| * | Implemented generic CbPackage attachments filtering | Stefan Boberg | 2021-09-13 | 1 | -22/+1 | |
| | | | | | Package transmission will also need to be updated (up next) for the new scheme to be effective | |||||
| * | clang-format fixes | Stefan Boberg | 2021-09-12 | 1 | -2/+6 | |
| | | ||||||
| * | HttpResponse enum -> HttpResponseCode | Stefan Boberg | 2021-09-12 | 1 | -18/+18 | |
| | | | | | Also removed initial CbPackage API HttpServer changes as I have decided to take a different approach | |||||
| * | clang-format | Stefan Boberg | 2021-09-09 | 1 | -1/+1 | |
| | | ||||||
| * | Factored out http server related code into zenhttp module since it feels out ↵ | Stefan Boberg | 2021-09-09 | 2 | -2/+2 | |
| | | | | | of place in zencore | |||||
| * | Removed legacy key-value cache (may be reinstated in another form in the future) | Stefan Boberg | 2021-09-03 | 2 | -251/+0 | |
| | | ||||||
| * | Zen upstream support (#7) | Per Larsson | 2021-09-03 | 2 | -26/+25 | |
| | | ||||||
| * | Removed #pragma once from cpp files (copy pasta fail) | Stefan Boberg | 2021-09-03 | 2 | -4/+0 | |
| | | ||||||
| * | IoHash::HashMemory -> IoHash::HashBuffer for consistency with UE5 code | Stefan Boberg | 2021-09-02 | 1 | -2/+2 | |
| | | ||||||
| * | Fixed a race in bucket open/create logic | Stefan Boberg | 2021-08-31 | 1 | -10/+24 | |
| | | | | | If two requests were sufficiently close, they could end up trying to initialize buckets twice which is not a good idea | |||||
| * | Asynchronous upstream caching to Jupiter | Per Larsson | 2021-08-31 | 4 | -194/+189 | |
| | | | | | Co-authored-by: Stefan Boberg <[email protected]> | |||||
| * | Eliminated rocksdb reference | Stefan Boberg | 2021-08-31 | 1 | -2/+0 | |
| | | ||||||
| * | clang-format fix | Stefan Boberg | 2021-08-24 | 1 | -2/+2 | |
| | | ||||||
| * | Fixed up drop logic (short circuiting fail!) | Stefan Boberg | 2021-08-24 | 1 | -3/+5 | |
| | | ||||||
| * | Improved ZenCacheStore::DropBucket logic and added logging | Stefan Boberg | 2021-08-23 | 1 | -4/+8 | |
| | | ||||||
| * | clang-format | Stefan Boberg | 2021-08-20 | 1 | -1/+1 | |
| | | ||||||
| * | added 'zen drop' command to drop cache buckets online | Stefan Boberg | 2021-08-17 | 2 | -4/+10 | |
| | | | | | also cleaned up the server side implementation a bit | |||||
| * | Implemented support for dropping z$ buckets while online | Stefan Boberg | 2021-08-17 | 4 | -2/+118 | |
| | | ||||||
| * | Implemented flush operations for cache services | Stefan Boberg | 2021-08-12 | 6 | -21/+191 | |
| | | | | | 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) | |||||
| * | trivial: Updated comment | Stefan Boberg | 2021-08-10 | 1 | -1/+1 | |
| | | ||||||
| * | Validate that structured cache bucket identifiers are alphanumeric | Stefan Boberg | 2021-06-17 | 1 | -0/+6 | |
| | | ||||||
| * | clang-format fixes | Stefan Boberg | 2021-05-27 | 1 | -2/+4 | |
| | | ||||||
| * | Structured cache now verifies attachment payloads | Stefan Boberg | 2021-05-25 | 1 | -14/+22 | |
| | | ||||||
| * | Bumped large object threshold to 64k, improved disk bucket replay mutex logic | Stefan Boberg | 2021-05-25 | 1 | -8/+6 | |
| | | ||||||
| * | Merged from origin/main | Stefan Boberg | 2021-05-25 | 7 | -1127/+1030 | |
| |\ | ||||||
| | * | Fixed index flags for standalone files | Stefan Boberg | 2021-05-24 | 1 | -3/+15 | |
| | | | ||||||
| | * | Added guards against zero-sized PUTs to structured cache | Stefan Boberg | 2021-05-24 | 1 | -0/+10 | |
| | | | ||||||
| | * | Eliminated sidx file since it's no longer necessary | Stefan Boberg | 2021-05-24 | 1 | -4/+0 | |
| | | | ||||||
| | * | Z$ now tracks content type for large objects as well as small. Large objects ↵ | Stefan Boberg | 2021-05-24 | 2 | -36/+94 | |
| | | | | | | | | | are tracked in index | |||||
| | * | Added CidStore, currently used to track relationships between compressed and ↵ | Stefan Boberg | 2021-05-24 | 2 | -4/+10 | |
| | | | | | | | | | | | | | uncompressed chunk hashes This first implementation is in-memory only, persistence is next | |||||
| | * | Validate payloads using embedded CompressedBuffer hash | Stefan Boberg | 2021-05-24 | 1 | -2/+5 | |
| | | | ||||||
| | * | Fixed up legacy cache store for CRC32 function rename | Stefan Boberg | 2021-05-24 | 1 | -2/+2 | |
| | | | ||||||
| | * | Fixed attachment index code so it doesn't generate zero-sized compactbinary ↵ | Stefan Boberg | 2021-05-24 | 1 | -9/+13 | |
| | | | | | | | | | arrays (which are disallowed) | |||||
| | * | Moved CRC32 compute into separate cpp/h to enable usage outside of the retro ↵ | Stefan Boberg | 2021-05-24 | 1 | -291/+3 | |
| | | | | | | | | | cache | |||||
| | * | Implemented new URI addressing scheme for the Zen cache endpoints, and ↵ | Stefan Boberg | 2021-05-23 | 4 | -33/+147 | |
| | | | | | | | | | prepared for additional indexing capabilities | |||||
| | * | Changed to tsl::robin_map | Stefan Boberg | 2021-05-23 | 2 | -11/+32 | |
| | | | | | | | | | Also added initial logic around attachment indexing (tactical check-in to continue on other computer) | |||||