Skip to content

Commit

Permalink
chore: Use 100 items in LRU cache instead
Browse files Browse the repository at this point in the history
  • Loading branch information
CCristi committed Jun 25, 2024
1 parent 62f4e56 commit c27555d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/explorerkit-server/src/core/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { register } from "@/components/metrics";
import { config } from "@/core/config";
import { onTeardown } from "@/utils/teardown";

const LRU_CACHE_MAX_ITEMS_COUNT = 1000;
const LRU_CACHE_MAX_ITEMS_COUNT = 100;

type CacheMetricGauges = {
redisHits: Gauge<string>;
Expand Down

0 comments on commit c27555d

Please sign in to comment.