We want to store, in a key-value database, an application data and the associated metadata. Our constraints are :
- storing two objects : one for content and one for metadata
- both objects must be encrypted separately
Our benchamrk goal is to measure the time to retrieve only the meta data by testing two data storing models.
The first solution is to have only one instance (DB) with a single object composed of two properties for a specific key.
key1 : {
value : { username : 'bob' },
meta : { lastModfication : t1 }
}
The second solution is to have two instances (DB).
First instance with data content :
key1 : { username : 'bob' }
Second instance with metadata:
key1 : { lastModfication : t1 }
npm i
npm start
In the web page, load the test file and run each test separately or click on "Run all tests". Results will appear directly in the page, details are shown in the console log.
To measure performance we are using the performance in two time intervals. The encryption is done with the AES GCM mode and a 128 bit static key. There is no additional data.
We are pushing all the setItem operations and executing through a Promise.all call. The single instance implies :
- # of keys setItem operations
- # of keys encryption operations ( for the test with enc)
const promiseArr = []
for (let key of Object.keys(testFile)) {
promiseArr.push(singleStore.setItem(key, encryption ? await cipherAES.encrypt(JSON.stringify(testFile[key])) : testFile[key]))
}
return Promise.all(promiseArr)
The double instances solution requires :
- 2 times # of keys setItem operations
- 2 times # of keys encryption operations
const promiseArr = []
for (let key of Object.keys(testFile)) {
promiseArr.push(app1.setItem(key, encryption ? await cipherAES.encrypt(JSON.stringify(testFile[key].value)) : testFile[key].value))
promiseArr.push(app1meta.setItem(key, encryption ? await cipherAES.encrypt(JSON.stringify(testFile[key].meta)) : testFile[key].meta))
}
return Promise.all(promiseArr)
The read operation relies on the iterate function of localforage. The purpose is to retrieve all the timeStamp with the corresponding key name. This is represented by an array of objects containg the key with the associated meta object :
[
{ key : { lastModification : timeStamp1} }
{ key2 : { lastModification : timeStamp1} }
...
]
For a single instance, we must get the entire object, which means a data overhead, in order to retrieve the meta object (with lastModification property).
let res = []
await singleStore.iterate((value, key, it) => {
res.push({
[key]: encryption ? value : value.meta.lastModification
})
})
For two instances, a single getItem with one instance is enough to obtain the meta object and the lastModification property. Less data is retrieved. However with encryption, we need to process in two steps :
- We retrieve the encrypted value of meta object
- We decrypt
const readDoubleStore = async encryption => {
let res = []
let dec = []
await app1meta.iterate((value, key, it) => {
res.push({
[key]: encryption ? value : value.lastModification
})
})
if (encryption) {
await Promise.all(res.map(async el => {
let val = JSON.parse(await cipherAES.decrypt(Object.values(el)[0]))
dec.push(val.lastModification)
}))
}
return encryption ? dec : res
}