DescriptionOptimized webstorage performance
This patch is to improve WebStorage access perfomance.
Chromium WebStorage getItem & setItem perfomance is not so good because of its multiporcess arch.
Currently, WebStorage data transfer between browser process and renderer process by Channel, which is implemented by pipe on Win platfrom, unix domain socket on POSIX platfrom.
One issue is, when data size is big, both pipe and socket IPC performs worse than shared memory mechnasim.
in this change, big size WebStorage data is transfered by shared memory, it will improve the setItem()/getItem() performance.
According to the perforamnce test case "WebStoragePerfTest.html" I submit in http://code.google.com/p/chromium/issues/detail?id=127528,
By this patch
On platform Ubuntu11.04/4G Memory/ Core i7, setItem() peformance improved 40%, getItem improved 10%.
On platform Win7/4G Memory/Core i5 M560, setItem() peformance improved 30%, getItem improved 15%.
BUG=127528
TEST=launch chromium and load WebStoragePerfTest.html, result will be shown after javascript finished.
Patch Set 1 #
Total comments: 6
Patch Set 2 : #
Messages
Total messages: 11 (0 generated)
|