Performance Issues loading large data set into c# GridView

后端 未结 5 2029
臣服心动
臣服心动 2021-01-06 09:09

Ok,

been testing relatively small data sets into my GridView, and all has worked fine. However, i\'ve now moved into proper UAT and have tried to load 17,000 records

5条回答
  •  佛祖请我去吃肉
    2021-01-06 10:06

    You should look into caching the query on the web server, especially if it's infrequently updated. That way, all the clients can simply surf off the cache instead of hitting the database mercilessly.

    See this SO question

提交回复
热议问题