aboutsummaryrefslogtreecommitdiff
path: root/src/zenstore/zenstore.cpp
Commit message (Collapse)AuthorAgeFilesLines
* make sure tests initialize trace so we don't end up allocating tons of ↵Stefan Boberg2025-05-151-0/+2
| | | | memory for no reason (#397)
* workspace shares (#84)Dan Engelbrecht2024-05-291-0/+2
| | | Feature: New 'workspaces' service which allows a user to share a local folder via zenserver. A workspace can have mulitple workspace shares and they provie an HTTP API that is compatible with the project oplog HTTP API. Workspaces and shares are preserved between runs. Workspaces feature is disabled by default - enable with --workspaces-enabled option when launching zenserver.
* clean up test linking (#4)Dan Engelbrecht2024-03-141-0/+2
| | | | | | | - Improvement: Add zenhttp-test and zenutil-test - Improvement: Moved cachepolicy test to cachepolicy.cpp - Improvement: Renamed cachestore tests from z$ to cachestore - Improvement: Moved test linking so test for a lib is linked by <lib>-test - Improvement: Removed HttpRequestParseRelativeUri in httpstructuredcache.cpp and use the one in cacherequests.h instead
* optimized index snapshot reading/writing (#561)Stefan Boberg2023-11-271-2/+0
| | | | | the previous implementation of in-memory index snapshots serialise data to memory before writing to disk and vice versa when reading. This leads to some memory spikes which end up pushing useful data out of system cache and also cause stalls on I/O operations. this change moves more code to a streaming serialisation approach which scales better from a memory usage perspective and also performs much better
* moved source directories into `/src` (#264)Stefan Boberg2023-05-021-0/+32
* moved source directories into `/src` * updated bundle.lua for new `src` path * moved some docs, icon * removed old test trees