我想要预测我的Parse Objects有多大。我有一个应用程序可以执行大量的addUnique,我想知道将addUnique添加到单个Parse对象的容量是多少。我想确保我不会碰到或超过这个限制。
答案 0 :(得分:1)
This might be of help。这是另一个堆栈溢出问题的答案,似乎可以解决您的问题。在帖子中也有很多评论和信息可能会有所帮助。
function roughSizeOfObject( object ) {
var objectList = [];
var stack = [ object ];
var bytes = 0;
while ( stack.length ) {
var value = stack.pop();
if ( typeof value === 'boolean' ) {
bytes += 4;
}
else if ( typeof value === 'string' ) {
bytes += value.length * 2;
}
else if ( typeof value === 'number' ) {
bytes += 8;
}
else if
(
typeof value === 'object'
&& objectList.indexOf( value ) === -1
)
{
objectList.push( value );
for( var i in value ) {
stack.push( value[ i ] );
}
}
}
return bytes;
}