0
Is it safe to use a resource pool (e.g. https://github.com/Bogdanp/resource_pool/blob/master/resource_pool.py) for:
rpc_connection = AuthServiceProxy("http://%s:%s@%s:%s"%(user, password...))
What are production-grade best practices to avoid too many connection are opened from the server to the node?
Thanks