0
我創建了一個capped集合來存儲我的日誌數據,只有很少的字段。由於某些要求,我想在此集合中添加一個名爲「createAt」的附加字段。在MongoDB中添加一個字段到加蓋集合中
db.myLogs.update({},{$set: {"createAt":new Date()}})
這是拋出以下錯誤:
WriteResult({
"nMatched" : 0,
"nUpserted" : 0,
"nModified" : 0,
"writeError" : {
"code" : 10003,
"errmsg" : "Cannot change the size of a document in a capped collection: 39 != 57"
}
})
我如何添加幾場進入封頂收藏?
感謝Markus!你解釋得很好。 +1 – Vipul