-Creating a new TCP connection for every HTTP operation (also known as "atomic connections") is an anti-pattern. Atomic connections will prevent your application from scaling well and waste resources unneccessarily. Always pipeline multiple operations into the same connection. Your application will benefit in transaction speed and resource costs due to reduced overhead of TCP connections being set up and torn down. When your application uses transport layer encryption (for example TLS), there is also significant cost associated with the processing of new connections. Review [Azure Cloud Design Patterns](https://docs.microsoft.com/azure/architecture/patterns/) for additional best practice patterns.
0 commit comments