Skip to content

Commit 0e0b823

Browse files
docs: small doc touch-up
Signed-off-by: Maksim Dimitrov <[email protected]>
1 parent c42495c commit 0e0b823

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

docs/environment-variables.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,15 @@ those.
290290
- `GRAPH_STORE_ACCOUNT_LIKE_SCAN_INTERVAL_HOURS`: If set, enables an experimental job that
291291
periodically scans for entity tables that may benefit from an [account-like optimization](https://thegraph.com/docs/en/indexing/tooling/graph-node/#account-like-optimisation) and marks them with an
292292
account-like flag. The value is the interval in hours at which the job
293-
should run. The job reads data from the `info.table_stats` materialized view, which refreshes every six hours. Expects an integer value, e.g., 24. Requires also setting
293+
should run. The job reads data from the `info.table_stats` materialized view, which refreshes every six hours.
294+
Expects an integer value, e.g., 24. Requires also setting
294295
`GRAPH_STORE_ACCOUNT_LIKE_MIN_VERSIONS_COUNT` and `GRAPH_STORE_ACCOUNT_LIKE_MAX_UNIQUE_RATIO`.
295-
- `GRAPH_STORE_ACCOUNT_LIKE_MIN_VERSIONS_COUNT`: Sets the minimum total number of versions a table must have to be considered for account-like flagging. Expects a positive integer value. No default value.
296-
- `GRAPH_STORE_ACCOUNT_LIKE_MAX_UNIQUE_RATIO`: Sets the maximum unique entities to version ratio (e.g., 0.01 ≈ 1:100 entity-to-version ratio).
297-
- `GRAPH_STORE_DISABLE_CALL_CACHE`: Disables the store call cache entirely. Graph node will skip writing and reading from the
298-
call cache. The buffered block call cache will still be enabled. This option may be useful
299-
for indexers who are running their own RPC nodes. Disabling the store call cache may have
300-
significant performance impact. (default: false)
296+
- `GRAPH_STORE_ACCOUNT_LIKE_MIN_VERSIONS_COUNT`: Sets the minimum total number of versions a table must have
297+
to be considered for account-like flagging. Expects a positive integer value. No default value.
298+
- `GRAPH_STORE_ACCOUNT_LIKE_MAX_UNIQUE_RATIO`: Sets the maximum unique entities to version ratio
299+
(e.g., 0.01 ≈ 1:100 entity-to-version ratio).
300+
- `GRAPH_STORE_DISABLE_CALL_CACHE`: Disables storing or reading `eth_call` results from the store call cache.
301+
This option may be useful for indexers who are running their own RPC nodes.
302+
Disabling the store call cache may significantly impact performance; the actual impact depends on
303+
the average execution time of an `eth_call` compared to the cost of a database lookup for a cached result.
304+
(default: false)

0 commit comments

Comments
 (0)