我在我的科爾多瓦應用程序中使用LocalForage
。LocalForage存儲容量
https://github.com/localForage/localForage
我想知道localforage的大小。基本上它被提及爲5mb
限制。我的移動應用程序中會有超過100MB的數據。
var DefaultConfig = {
description: '',
driver: DefaultDriverOrder.slice(),
name: 'localforage',
// Default DB size is _JUST UNDER_ 5MB, as it's the highest size
// we can use without a prompt.
size: 4980736,
storeName: 'keyvaluepairs',
version: 1.0
};
大小爲4980736字節。這是4.9MB ..如果我把它增加到100MB它支持?