CouchDB附件中使用的“revpos”值是多少?

时间:2009-12-01 09:47:12

标签: couchdb

以下是一个例子:

   "_attachments": {
       "002-imgsq.jpg": {
           "stub": true,
           "content_type": "image/jpeg",
           "length": 80074,
           "revpos": 3
       },
       "016-imgsq.jpg": {
           "stub": true,
           "content_type": "image/jpeg",
           "length": 100095,
           "revpos": 4
       },
       "MASTER_img-square.jpg": {
           "stub": true,
           "content_type": "image/jpeg",
           "length": 70611,
           "revpos": 2
       }
   }

1 个答案:

答案 0 :(得分:3)

附件revpos是添加或更新附件时的doc's rev前缀(序号)。我相信它只是在复制期间才真正使用,以避免复制自上次复制以来没有改变的附件。