您的位置:首页 > Web前端 > JavaScript

LINK - Azure Mobile Services - Custom Bulk Insert Javascript API

2015-02-03 16:30 435 查看
the Challenge:
The underlying problem is that a Mobile Service running in free mode (the default configuration) throttles the number of connections that can be made and in a tight loop, you can quickly exceed that and put the service in a bad state. The solution is to wait for previous inserts to complete before inserting new items. You can safely insert a batch of items (say 10) and once that is complete submit another batch of insert operations to avoid this connection limit.

LINK - http://blogs.msdn.com/b/jpsanders/archive/2013/03/20/server-script-to-insert-table-items-in-windows-azure-mobile-services.aspx
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: