0

I have implemented reverse geocoding in the map. We are sending around 1000 reverse geocoding async request at a time to the map server and at that time my browser got hangs for 6-7 seconds. I am using JQUERY for it and it's async request than why browser gets hang. May i know the reason behind it and alternative solution for it?

Note : I am using MVC 3.

4

2 回答 2

1

向您的服务器发送 1000 个 AJAX 请求对于浏览器来说似乎是一个巨大的负担。如果您有 2 个用户同时浏览您的网站怎么办?如果你有 3 个呢?如果你有 100 个呢?您的网络服务器不会持续很长时间。

我建议您重新考虑您的设计,以便发送更少的 AJAX 请求但使用更大的有效负载数据,即将多个请求聚合为一个请求。

于 2012-05-11T09:12:45.020 回答
1

您是否尝试过将所有请求合并为一个请求?这将加快页面加载速度,因为您将发出至少 1001 个请求

于 2012-05-11T09:13:14.217 回答