We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Our transaction count done in the cache is currently very naive and slow: Just count the number of txs in PG.
We know counting is slow in PG.
We could in the Finalizer service or somewhere else, count all new txs and add them to the previous count.
We should persist those data in db, so the load is done on the write-only instance, rather than every read-only.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Our transaction count done in the cache is currently very naive and slow: Just count the number of txs in PG.
We know counting is slow in PG.
We could in the Finalizer service or somewhere else, count all new txs and add them to the previous count.
We should persist those data in db, so the load is done on the write-only instance, rather than every read-only.
The text was updated successfully, but these errors were encountered: