Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 525 Bytes

BestPractices.md

File metadata and controls

21 lines (14 loc) · 525 Bytes

Best Practices

Communicated in (http://www.microsoftvirtualacademy.com/colleges/windows-azure-deep-dive)

All connections automatically use:

  • UseNagleAlgorithm = false;
  • Expect100Continue = false;
  • DefaultConnectionLimit = 1000; (Best Practice is 100+)

You "can" override best practices

    azure.NagleAlgorithm(enabled: Your_Answer);
    
    azure.Expect100Continue(enabled: Your_Answer);
    
    // Shortcut to do whatever you want to the endpoint
    azure.TableServicePoint();