Firestore文档提供了有关如何手动计算文档的存储大小的详细信息,但是在文档参考,快照或元数据中,似乎都没有为此提供的功能。
我尝试使用自己的计算之前,没有人知道为此使用官方或非正式功能吗?
这是我对https://firebase.google.com/docs/firestore/storage-size的文档的解释,是我(完全未经测试)对这种功能的第一个切入点>
function calcFirestoreDocSize(collectionName, docId, docObject) {
let docNameSize = encodedLength(collectionName) + 1 + 16
let docIdType = typeof(docId)
if(docIdType === 'string') {
docNameSize += encodedLength(docId) + 1
} else {
docNameSize += 8
}
let docSize = docNameSize + calcObjSize(docObject)
return docSize
}
function encodedLength(str) {
var len = str.length;
for (let i = str.length - 1; i >= 0; i--) {
var code = str.charCodeAt(i);
if (code > 0x7f && code <= 0x7ff) {
len++;
} else if (code > 0x7ff && code <= 0xffff) {
len += 2;
} if (code >= 0xDC00 && code <= 0xDFFF) {
i--;
}
}
return len;
}
function calcObjSize(obj) {
let key;
let size = 0;
let type = typeof obj;
if(!obj) {
return 1
} else if(type === 'number') {
return 8
} else if(type === 'string') {
return encodedLength(obj) + 1
} else if(type === 'boolean') {
return 1
} else if (obj instanceof Date) {
return 8
} else if(obj instanceof Array) {
for(let i = 0; i < obj.length; i++) {
size += calcObjSize(obj[i])
}
return size
} else if(type === 'object') {
for(key of Object.keys(obj)) {
size += encodedLength(key) + 1
size += calcObjSize(obj[key])
}
return size += 32
}
}
Firestore文档提供了有关如何手动计算文档的存储大小的详细信息,但是在文档参考,快照或元数据中,似乎都没有为此提供的功能。 ...
有一个npm软件包firestore-size,可能对您有帮助。