aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/vfs
Commit message (Collapse)AuthorAgeFilesLines
* non memory copy compressed range (#13)Dan Engelbrecht2024-03-201-12/+14
| | | | | * Add CompressedBuffer::GetRange that references source data rather than make a memory copy * Use Compressed.CopyRange in project store GetChunkRange * docs for CompressedBuffer::CopyRange and CompressedBuffer::GetRange
* separate RPC processing from HTTP processing (#626)Stefan Boberg2023-12-201-1/+1
| | | | | | * moved all RPC processing from HttpStructuredCacheService into separate CacheRpcHandler class in zenstore * move package marshaling to zenutil. was previously in zenhttp/httpshared but it's useful in other contexts as well where we don't want to depend on zenhttp * introduced UpstreamCacheClient, this provides a subset of functions on UpstreamCache and lives in zenstore
* move cachedisklayer and structuredcachestore into zenstore (#624)Stefan Boberg2023-12-191-1/+1
|
* factored out some compiler definitions etc into zenbase (#517)Stefan Boberg2023-11-071-1/+1
| | | | | this is a header-only library which mostly contains definitions to support different platforms and compilers. It is part of the zen codebase but is intended to be consumable separately to zenbase etc to support standalone transport plug-ins and similar.
* added missing includes (#504)Stefan Boberg2023-10-272-0/+2
| | | | | this change adds some includes to files which "inherit" includes from elsewhere this was exposed on another branch when removing some heavy dependencies from central headers
* faster oplog iteration (#471)Dan Engelbrecht2023-10-131-1/+1
| | | | | * use a CbObjectView instead of CbObject to avoid creating IOBufferCore instances * use BasicFileBuffer directly where possible * changelog
* Change default port to 8558zousar2023-10-111-2/+2
| | | | Changes the default port without altering config for shared instances.
* VFS implementation for local storage service (#396)Stefan Boberg2023-09-204-0/+826
currently, only Windows (using Projected File System) is supported