diff options
| author | zousar <[email protected]> | 2025-06-24 16:47:19 -0600 |
|---|---|---|
| committer | zousar <[email protected]> | 2025-06-24 16:47:19 -0600 |
| commit | 45793f40c44e60185b149e5030539c679e874990 (patch) | |
| tree | be3f38ed401b43a74407d6b752f23de699895e67 /src/zenstore/include | |
| parent | Merge branch 'main' into zs/put-overwrite-policy (diff) | |
| download | zen-45793f40c44e60185b149e5030539c679e874990.tar.xz zen-45793f40c44e60185b149e5030539c679e874990.zip | |
xmake precommit
Diffstat (limited to 'src/zenstore/include')
| -rw-r--r-- | src/zenstore/include/zenstore/cache/cachedisklayer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zenstore/include/zenstore/cache/cachedisklayer.h b/src/zenstore/include/zenstore/cache/cachedisklayer.h index 11d13bede..903916137 100644 --- a/src/zenstore/include/zenstore/cache/cachedisklayer.h +++ b/src/zenstore/include/zenstore/cache/cachedisklayer.h @@ -244,14 +244,14 @@ public: void Get(const IoHash& HashKey, GetBatchHandle& BatchHandle); struct PutBatchHandle; - PutBatchHandle* BeginPutBatch(std::vector<ZenCacheDiskLayer::PutResult>& OutResult); - void EndPutBatch(PutBatchHandle* Batch) noexcept; + PutBatchHandle* BeginPutBatch(std::vector<ZenCacheDiskLayer::PutResult>& OutResult); + void EndPutBatch(PutBatchHandle* Batch) noexcept; PutResult Put(const IoHash& HashKey, const ZenCacheValue& Value, std::span<IoHash> References, bool Overwrite, PutBatchHandle* OptionalBatchHandle); - uint64_t MemCacheTrim(GcClock::TimePoint ExpireTime); + uint64_t MemCacheTrim(GcClock::TimePoint ExpireTime); std::function<void()> Drop(); void Flush(); void ScrubStorage(ScrubContext& Ctx); |