We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4186f73 commit 91f833dCopy full SHA for 91f833d
src/utils/arweave.ts
@@ -7,7 +7,7 @@ import { makeRequestToArweaveNetwork } from "./helpers";
7
8
// Simple in-memory cache with expiration and size limit
9
type CacheEntry<T> = { value: T; expiresAt: number };
10
-const CACHE_MAX_ENTRIES = 201;
+const CACHE_MAX_ENTRIES = 120;
11
const cache = new Map<string, CacheEntry<any>>();
12
13
function setCache<T>(key: string, value: T, ttlMs: number) {
0 commit comments