I'am using Azure queues, and I wanted to know how can I disable Nagle algorithm with azure-sdk-for-python. Is there a param that permit to do that easily ?
Thank you !
I'am using Azure queues, and I wanted to know how can I disable Nagle algorithm with azure-sdk-for-python. Is there a param that permit to do that easily ?
Thank you !
In .NET it isn't a function of the client library as it is set through System.Net.ServicePointManager. This article seems to talk to challenges doing the same with Python:Disabling nagle in python: how to do it the right way?. Maybe someone with more Python expertise than I have can weigh in?