All web applications have fast rendering as one of the primary goals, JSON is a preferred choice in most of AJAX based applications because it is lightweight data interchange format. Consider a scenario where you have to read data from database and render it on UI, typically the steps which will be followed are: a. Send request data to server using AJAX calls b. At server end invoke the Business layer c. Business layer calls the database layer d. Data returned from database layer is populated into business objects e. From business objects build JSON objects, send them back to client f. Client use Javascript libraries to render data on UI. If everything works fine for you, you can stop reading right now, because you are achieving the required goal in the best way. But in real world this might not be working for you because of performance issues at one or the other step mentioned above. Here are few performance tips, they might suite in some of the scenarios and might be th
Fun Drive with Technology