Large JSON Objects (approximately 1.5 MB) are received in Controller
C1. They are then converted to strings and stored in a hidden label in View
V1.
The JSON data in V1 is utilized by parsing it in JavaScript
J1.
An occurrence of
Out of Memory Exception
has been noticed occasionally on the ASP.NET MVC page.
There is uncertainty about whether the large JSON strings in View
V1 could be the cause of this issue.
- Could the extensive JSON strings be responsible for the OOM Exception?
- Is there a more efficient method to handle the substantial JSON strings in JavaScript J1?