开发者

Javascript Fastest Local Database

What would be the best format for storing a relatively large amount of data (essentially a big hashmap) for quick retrieval using javascript? It would need to support Unicode as well.

开发者_C百科

XML, JSON?


Gigantic javascript objects are generally a sign that you're trying to do something you really shouldn't be doing. XML is even worse, it has to be parsed to form meaningful data.

In this case an AJAX query to RESTful interface to a proper database backend would probably serve you well.

Javascript object access (particularly for any query beyond accessing a single item by its hash) is very slow compared to even a basic database.


There is a nice research of the people at flickr about this topic. They ended up by using csv over xml and json.


JSON definitely beats XML for performance reasons.

But a query against DB on the backend would probably be the only feasible solution once a certain scale is reached, since local resources can not possibly match data retrieval from large store compared to DB.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜