I am searching for the solution to store the large amount of data in the client side. But i couldn't figured out the proper way due to some limitations of some techniques.
I came to know about $.data
but i didn't get any proper information about the data limits of $.data
.
Any information will be greatful
It can store up to whatever the operating system allows, which is practically limitless. This is because $.data
stores the data in object properties and ECMAScript doesn't set any particular memory limit on them.