现在我正在将我的整个设备数据库复制到我的远程数据库。
完成后,我使用过滤器从远程数据库中获取所有不超过1个月的数据,并将其带到我的设备。
过滤
{
_id: '_design/filters',
"filters": {
"device": function(doc, req) {
if(doc.type == "document" || doc.type == "signature") {
if(doc.created >= req.query.date) return true;
else return false;
}
else return true;
}
}
}
复制
device_db.replicate.to(remote_db)
.on('complete', function () {
device_db.replicate.from(remote_db, {
filter: "filters/device",
query_params: { "date": (Math.floor(Date.now() / 1000)-2419200) }
})
.on('complete', function () {
console.log("localtoRemoteSync replicate.to success");
callback(true);
});
});
我希望能够定期从我的设备中删除超过3个月的数据(我已经知道的足够数据已经同步了)
但仅仅因为我从设备中删除了它,当我将数据复制回 remote_db 时,我也不希望它被删除。
如何删除设备上的特定数据,但在复制时没有翻译该删除?
答案 0 :(得分:3)
在这里,我们有2个过滤器:
noDeleted:此过滤器不会推送 _deleted 文档。
设备:过滤以仅获取最新数据。
{
_id: '_design/filters',
"filters": {
"device": function(doc, req) {
if (doc.type == "document" || doc.type == "signature") {
if (doc.created >= req.query.date) return true;
else return false;
}
return true;
},
"noDeleted": function(doc, req) {
//Document _deleted won't pass through this filter.
//If we delete the document locally, the delete won't be replicated to the remote DB
return !doc._deleted;
}
}
}
device_db.replicate.to(remote_db, {
filter: "filters/noDeleted"
})
.on('complete', function() {
device_db.replicate.from(remote_db, {
filter: "filters/device",
query_params: { "date": (Math.floor(Date.now() / 1000) - 2419200) }
})
.on('complete', function() {
console.log("localtoRemoteSync replicate.to success");
callback(true);
});
});