From 4b32215ded0603c4eed8c2bd7efe6749e14cc52b Mon Sep 17 00:00:00 2001 From: crypticmeta Date: Fri, 11 Oct 2024 08:34:42 +0530 Subject: [PATCH] stop saving number-to-id and use only 10 blocks at a time --- indexer/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexer/src/index.ts b/indexer/src/index.ts index f85b2df4f6..3aeb31e620 100644 --- a/indexer/src/index.ts +++ b/indexer/src/index.ts @@ -2,7 +2,7 @@ // to run: node --max-old-space-size=8192 ./index.ts // NOTE: there is a possibility that if json contains \u0000, it'll be saved into text_content not content (jsonb) -const LIMIT = 100; +const LIMIT = 10; import dotenv from 'dotenv'; dotenv.config();