8
我正在使用CouchDB實現消息應用程序。我想將時間戳應用於每封郵件。我發現一些參考文獻指出我應該使用document update handlers。就地更新看起來是正確的。但是我會在哪裏獲得時間戳?它在某個地方是否需要req對象?CouchDb自動時間戳
{
updates: {
"in-place" : function(doc, req) {
doc.timestamp = "???";
var message = "set timestamp to "+doc.timestamp;
return [doc, message];
}
}
}
http://stackoverflow.com/questions/4812235/whats-the-best-way-to-store-datetimes-timestamps-in-couchdb – abernier 2012-11-11 15:05:13