开发者

Json Vs Conventional Technologies

开发者 https://www.devze.com 2022-12-18 21:04 出处:网络
We are having a site which are having bulk data like approx 50000 to 100000 records. I want to render this data in my site with paging of 10. Which Technology i should use fo开发者_运维百科r that. Per

We are having a site which are having bulk data like approx 50000 to 100000 records. I want to render this data in my site with paging of 10. Which Technology i should use fo开发者_运维百科r that. Performance is key thing of us. So should i use JSON to call web service and with help of JavaScript render data on page. and render the data or should i go for conventional Technologies like repeater or grid view. Which performance will be better.

Please suggest me which will be best?


Sending and rendering 10 elements will be extremely fast regardless of the technology (JSON, full page refresh...)

What is important here is how the server will select those 10 elements out of 50k-100k records. Database software usually provides ways to quickly select a fixed number of elements from an indexed set, for instance.


If you store your 50-100k records in a text file, be it JSON or something else, then it has to scan the file to display a page of data, at least until the end of the page it's displaying. This does not scale.

While it will work "ok" with 50k or 100k records, once you reach, say, 10M, it will probably not. What you want is an indexed file which allows you to skip to the right record.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号