Click here to Skip to main content
15,867,986 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Have done caching on the app server but want to cache data even on the browser level.
Any suggestions would help.

What I have tried:

Have done caching on the app server but want to cache data even on the browser level.
Posted
Updated 17-Sep-19 3:11am

You want to cache 1,000,000 records on the client-side?

One word: Don't.

It sounds like you seriously need to re-think your design. The browser should be getting pages of data, only what the browser needs to show. Caching a million records when the client, typically, only needs to see or use a couple of dozen is absurd.
 
Share this answer
 
Quote:
What is the best method to browser cache 10 lac records from SQL database in ASP.NET?

The best method is to not do it.
Loading the phone directory of your country in a droplist is a bad idea. Even a rate of 1000 records per second makes it 20 minutes to load.
Advice: look at web sites on similar subject, and see how they deal with the problem.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900