Blog Archives

Reseting local Windows Azure storage

I run few days into a problem when I was not able to delete local development storage tables using Windows Azure API and system was throwing me exceptions. The reason of these exceptions I guess was the fact that table were very big. In basic scenarios resetting can be archived with Storage emulator UI.    [...]

Share

Improving performance for Windows Azure tables

Original article NET and ADO.NET Data Service Performance Tips for Windows Azure Tables.   Summary: Default .NET HTTP connections is set to 2 Config file: <system.net> <connectionManagement> <add address = "*" maxconnection = "48" /> </connectionManagement> </system.net> In code: ServicePointManager.DefaultConnectionLimit = 48; .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, “Courier New”, courier, [...]

Share