Fastest Local Javascript Database
3 answers
Giant javascript objects are usually a sign that you are trying to do something that you really don't need to do. XML is even worse, it needs to be parsed to form meaningful data.
In this case, an AJAX request to a RESTful interface for a proper database backend will probably serve you well.
Accessing a Javascript object (especially for any request without accessing a single element by its hash) is very slow compared to the underlying database.
+4
source to share