没有° Ajax 调用次数与数据大小
我遇到的情况是我必须在两个选项之间做出选择。
- 我必须向三个 jsps 发出三个不同的 ajax 请求,每个请求返回 30kB 的数据。
- 我必须向一个 jsp 发出一个 ajax 请求,该 jsp 具有 300kB 的数据。但我只会使用其中的 90kB。
我应该更喜欢这些选项中的哪一个? 这个问题归结为“ajax 调用涉及多少开销?” 。
另外,请注意,我必须重复执行上述步骤。
谢谢
I've a situation wherein I've to choose between two options.
- I've to make three different ajax requests to three jsps each of which returns say 30kB of data.
- I've to make one ajax request to just one jsp which say has 300kB of data. But I would be using only 90kB of it.
Which of these options should I prefer ?
This question just boils down to 'how much of overhead is involved in an ajax call?' .
Also, please note that I've to perform the above steps repeatedly.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Fiddler2 运行测试来检查每个包的大小和开销。
您将看到:
小每个请求的开销小于 1 kB。
只有 cookie 才能将该金额增加到该阈值以上。
You could run your tests with Fiddler2 to check the size of each package and overhead.
You'll see that:
Expect overheads smaller than 1 kB for each request.
Only cookies can increase that amount above that threshold.