|
DeterministicESPAsyncWebServer v6.28.0
Zero-allocation, bounded-execution async HTTP server for ESP32
|
CDN edge-cache tier - async origin-fetch engine (DETWS_ENABLE_EDGE_CACHE). More...
#include "ServerConfig.h"Go to the source code of this file.
CDN edge-cache tier - async origin-fetch engine (DETWS_ENABLE_EDGE_CACHE).
A non-blocking origin fetch: open + send a request over a transport seam, accumulate the response across poll loops into a bounded buffer, detect completion (Content-Length / chunked / connection close), then parse it with the proven http_client codec. Pumped from the server poll loop so a miss or revalidation never stalls the worker; the transport seam is det_client on the device and a mock in host tests. Zero heap; the buffer is fixed (DETWS_EDGE_FETCH_BUF).
Definition in file edge_fetch.h.