Maintain Outbound TCP Connection Pool in ColdFusion
问题 I'm looking to make heavy consumption of a RESTful API from a ColdFusion application. I'm not a CF expert but I'm anticipating the repeated cfhttp calls will become a bottleneck as I believe that each results in a connection being established, request sent, response received and connection torn down. I'm curious - is there a way to maintain a connection pool that requests could be sent through to avoid the repeated establish/tear down? Does the ColdFusion server provide such a facility that I