IndexedDB vs localStorage
JavaScript performance comparison
Preparation code
<script src="https://rawgithub.com/jensarps/IDBWrapper/master/idbstore.js"></script>
<script>
var scope = {};
// store setup
var idb = new IDBStore({
dbName: 'jsperftestdb',
storeName: 'jsperfteststore',
dbVersion: '1.0',
keyPath: 'id',
autoIncrement: true,
onStoreReady: function(){
idb.clear();
}
});
var ls = window.localStorage;
ls.clear();
// data setup
var i = 0,
lastnames = ['smith','miller','doe','frankenstein','furter'],
firstnames = ['peter','john','frank', 'james'],
dummyData = {"web-app": {
"servlet": [
{
"servlet-name": "cofaxCDS",
"servlet-class": "org.cofax.cds.CDSServlet",
"init-param": {
"configGlossary:installationAt": "Philadelphia, PA",
"configGlossary:adminEmail": "ksm@pobox.com",
"configGlossary:poweredBy": "Cofax",
"configGlossary:poweredByIcon": "/images/cofax.gif",
"configGlossary:staticPath": "/content/static",
"templateProcessorClass": "org.cofax.WysiwygTemplate",
"templateLoaderClass": "org.cofax.FilesTemplateLoader",
"templatePath": "templates",
"templateOverridePath": "",
"defaultListTemplate": "listTemplate.htm",
"defaultFileTemplate": "articleTemplate.htm",
"useJSP": false,
"jspListTemplate": "listTemplate.jsp",
"jspFileTemplate": "articleTemplate.jsp",
"cachePackageTagsTrack": 200,
"cachePackageTagsStore": 200,
"cachePackageTagsRefresh": 60,
"cacheTemplatesTrack": 100,
"cacheTemplatesStore": 50,
"cacheTemplatesRefresh": 15,
"cachePagesTrack": 200,
"cachePagesStore": 100,
"cachePagesRefresh": 10,
"cachePagesDirtyRead": 10,
"searchEngineListTemplate": "forSearchEnginesList.htm",
"searchEngineFileTemplate": "forSearchEngines.htm",
"searchEngineRobotsDb": "WEB-INF/robots.db",
"useDataStore": true,
"dataStoreClass": "org.cofax.SqlDataStore",
"redirectionClass": "org.cofax.SqlRedirection",
"dataStoreName": "cofax",
"dataStoreDriver": "com.microsoft.jdbc.sqlserver.SQLServerDriver",
"dataStoreUrl": "jdbc:microsoft:sqlserver://LOCALHOST:1433;DatabaseName=goon",
"dataStoreUser": "sa",
"dataStorePassword": "dataStoreTestQuery",
"dataStoreTestQuery": "SET NOCOUNT ON;select test='test';",
"dataStoreLogFile": "/usr/local/tomcat/logs/datastore.log",
"dataStoreInitConns": 10,
"dataStoreMaxConns": 100,
"dataStoreConnUsageLimit": 100,
"dataStoreLogLevel": "debug",
"maxUrlLength": 500}},
{
"servlet-name": "cofaxEmail",
"servlet-class": "org.cofax.cds.EmailServlet",
"init-param": {
"mailHost": "mail1",
"mailHostOverride": "mail2"}},
{
"servlet-name": "cofaxAdmin",
"servlet-class": "org.cofax.cds.AdminServlet"},
{
"servlet-name": "fileServlet",
"servlet-class": "org.cofax.cds.FileServlet"},
{
"servlet-name": "cofaxTools",
"servlet-class": "org.cofax.cms.CofaxToolsServlet",
"init-param": {
"templatePath": "toolstemplates/",
"log": 1,
"logLocation": "/usr/local/tomcat/logs/CofaxTools.log",
"logMaxSize": "",
"dataLog": 1,
"dataLogLocation": "/usr/local/tomcat/logs/dataLog.log",
"dataLogMaxSize": "",
"removePageCache": "/content/admin/remove?cache=pages&id=",
"removeTemplateCache": "/content/admin/remove?cache=templates&id=",
"fileTransferFolder": "/usr/local/tomcat/webapps/content/fileTransferFolder",
"lookInContext": 1,
"adminGroupID": 4,
"betaServer": true}}],
"servlet-mapping": {
"cofaxCDS": "/",
"cofaxEmail": "/cofaxutil/aemail/*",
"cofaxAdmin": "/admin/*",
"fileServlet": "/static/*",
"cofaxTools": "/tools/*"},
"taglib": {
"taglib-uri": "cofax.tld",
"taglib-location": "/WEB-INF/tlds/cofax.tld"}
}
};
</script>
<script>
Benchmark.prototype.setup = function() {
scope.i = 0;
scope.smallData = {
'lastname': lastnames[Math.floor(Math.random()*5)],
'firstanme': firstnames[Math.floor(Math.random()*4)],
'dummyData': {}
};
scope.largeData = {
'lastname': lastnames[Math.floor(Math.random()*5)],
'firstanme': firstnames[Math.floor(Math.random()*4)],
'dummyData': dummyData
};
};
</script>
Preparation code output
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
Test | Ops/sec | |
---|---|---|
localStorage read/write small data
|
|
pending… |
localStorage read/write large data
|
|
pending… |
IDB read/write small data
|
|
pending… |
IDB read/write large data
|
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit
to the URL.
- Revision 4: published
- Revision 5: published
- Revision 6: published Alex
- Revision 7: published
- Revision 13: published
- Revision 14: published
- Revision 15: published Marc
- Revision 16: published
- Revision 17: published
- Revision 18: published
- Revision 19: published
- Revision 22: published
- Revision 24: published
- Revision 25: published
- Revision 27: published
- Revision 28: published
- Revision 29: published
- Revision 32: published
- Revision 33: published
- Revision 34: published
- Revision 35: published
- Revision 36: published
- Revision 37: published
- Revision 38: published matt
- Revision 42: published
- Revision 43: published
- Revision 44: published
- Revision 45: published Lee Houghton
- Revision 46: published
- Revision 47: published
- Revision 48: published
- Revision 49: published
- Revision 51: published
- Revision 53: published
- Revision 54: published
- Revision 56: published Patrick van Vuuren
- Revision 58: published
- Revision 59: published
- Revision 60: published
- Revision 61: published
- Revision 62: published
- Revision 63: published
- Revision 64: published
- Revision 65: published
- Revision 67: published
- Revision 68: published Ashish Shubham
- Revision 69: published Ashish Shubham
0 Comments