I want to use a large number of RESTful APIs from a ColdFusion application.
I am not a CF expert, but I expect that repeated calls to cfhttp will become a bottleneck, since I believe that every result is a connection, send a request, receive a response and disconnect.
I am curious - is there a way to maintain a pool of connections that can be sent to avoid re-establishment / failure?
Does the ColdFusion server provide a tool that I just donβt know about (we use CF 8), or can I write a custom java tag that could support the pool?
Of course, someone else came across this.
source share