add SqliteCache as default local impl

This commit is contained in:
Muki Kiboigo committed 2026-08-03 18:17:40 -07:00
1 parent 5f88b33ed6
commit 0f2957cda2
7 files changed
+939 -104

No files matched your search

+1 -1
View File
@@ -905,7 +905,7 @@ fn cacheLookup(self: *Client, transfer: *Transfer) !bool {
out.* = .{ .name = hdr.name, .value = hdr.value };
}
const cached = cache.get(arena.allocator(), .{
const cached = try cache.get(arena.allocator(), .{
.url = req.url,
.timestamp = lp.datetime.timestamp(.real),
.request_headers = req_headers,