diff options
| author | Stefan Boberg <[email protected]> | 2023-10-20 13:25:58 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-20 13:25:58 +0200 |
| commit | 733dce4c722f101635d60709613d7c97c3bd30df (patch) | |
| tree | 548cfddd0329a2be1e11ddb0b08ce4ec7b238950 /src/zenhttp/include | |
| parent | clean up GcContributor and GcStorage to be pure interfaces (#485) (diff) | |
| download | zen-733dce4c722f101635d60709613d7c97c3bd30df.tar.xz zen-733dce4c722f101635d60709613d7c97c3bd30df.zip | |
Cache (rpc) activitity recording improvements (#482)
this adds a new RPC recording path aimed at more continuous recording and analysis of recorded sessions
the new strategy is implemented alongside the original in order to retain the ability to read the older format
the main difference between v2 and v1 is that the new strategy splits the recording into segments which are independent from each other. This is done to enable long running sessions with automatic disk cleanup (not implemented yet), appending to an existing recording (not implemented) and/or partial analysis and processing. The recorder will start a new segment when some criteria is fulfilled, including the number of files in the segment directory, disk footprint etc
Diffstat (limited to 'src/zenhttp/include')
| -rw-r--r-- | src/zenhttp/include/zenhttp/httpclient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenhttp/include/zenhttp/httpclient.h b/src/zenhttp/include/zenhttp/httpclient.h index 044a3162e..0663abc43 100644 --- a/src/zenhttp/include/zenhttp/httpclient.h +++ b/src/zenhttp/include/zenhttp/httpclient.h @@ -87,7 +87,7 @@ public: // The number of bytes sent as part of the request int64_t UploadedBytes; - // The number of bytes recevied as part of the response + // The number of bytes received as part of the response int64_t DownloadedBytes; // The elapsed time in seconds for the request to execute |