Replies: 1 comment 2 replies
-
Too broad question, i will close it. What requests? What optimizing: latency or throughput? What machine/disk spec? Are you single consumer of rpc api or it’s shared api(can’t impact other users experience)? Why you need optimize something (current speed is not enough for what? Do you need 10% optimization or 1000%?)? Etc… without this info, answer will be too broad: to optimize - need work on optimizations, see profiling data, find the bottleneck and fix it :-) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using RPC requests to grab data from the Erigon database and am trying to optimize for speed. I've tested running the RPC daemon with the flags
--rpc.batch.concurrency
and--db.read.concurrency
but haven't seen much impact on my RPC requests.Any suggestions to optimize the speed of RPC requests?
Beta Was this translation helpful? Give feedback.
All reactions