Answered by:
NetWork Error accessing mvc site with Large data

Question
-
User457850011 posted
I have developed an MVC 5 Application using Entity FrameWork 6.4 code first from existing database. This application loads large amount of data and Currently users are getting "Network Error "" The Web Server may be down, too busy, or experiencing other problems preventing it from responding to request. You may wish ton try again at a later time.,
when they first access the url. The site doesn't come up. Any suggestions.
Tuesday, April 14, 2020 8:16 PM
Answers
-
User1120430333 posted
Well, you need to put a stop to that and put some kind of limitation on how many documents can be retrieved at one time by a user.
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Wednesday, April 15, 2020 5:10 AM
All replies
-
User1120430333 posted
This application loads large amount of data and
Data for what? How much data? How many users are loading the data concurrently?
Wednesday, April 15, 2020 2:29 AM -
User457850011 posted
About 200 users retrieving 15,000 documents concurrently.
Wednesday, April 15, 2020 3:10 AM -
User1120430333 posted
Well, you need to put a stop to that and put some kind of limitation on how many documents can be retrieved at one time by a user.
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Wednesday, April 15, 2020 5:10 AM -
User457850011 posted
That works. I have limited how many items can be returned from the database and it is working. Thanks for your suggestions
Friday, April 17, 2020 5:06 PM