Description
Research and implement performance optimizations for our subgraph to ensure we are following the latest industry standards
Motivation
To keep our queries fast and the database lean. After deep-diving into The Graph Best Practices, we need to ensure our subgraph doesn't become a bottleneck as data grows
Implementation details
After an extensive review, our subgraph already cover most best TheGraph practices. The final step is adding prune: auto option under indexerHints in subgraph.yaml. This will automatically clean up old historical data, keeping the Indexer efficient and our response times shorter
Description
Research and implement performance optimizations for our subgraph to ensure we are following the latest industry standards
Motivation
To keep our queries fast and the database lean. After deep-diving into The Graph Best Practices, we need to ensure our subgraph doesn't become a bottleneck as data grows
Implementation details
After an extensive review, our subgraph already cover most best TheGraph practices. The final step is adding
prune: autooption underindexerHintsinsubgraph.yaml. This will automatically clean up old historical data, keeping the Indexer efficient and our response times shorter