使用$ inc和$ addToSet进行MongoDB upsert

时间:2012-06-15 04:02:16

标签: php mongodb

我的示例代码:

<?php
$m = new Mongo();

$db = $m->selectDB('metrics');
$collection = new MongoCollection($db, 'counter');

$url = $_SERVER['REQUEST_URI'];
$ip = '192.168.1.1';
$user = 'testuser';
$today = date('Y-m-d');

//upsert 1st
$filter = array('url' => $url, 'date' => $today);
$data2 = array(
                '$inc' => array("pageview" => 1),
                '$addToSet' => array('visitors' => array('ip' => $ip))
);
$options = array("upsert" => true);
$collection->update( $filter, $data2, $options );


//update the pageview for unique ip after that
$filter1 = array( 'url' => $url, 'date' => $today, 'visitors' => array( '$elemMatch' => array( 'ip' => $ip ) ) );
$update1 = array( '$inc' => array( 'visitors.$.pageview' => 1 ) );
$collection->update( $filter1, $update1 );

?>

mongodb中的数据:

第一次查看页面时这是正确的。

> db.counter.find();
{ "_id" : ObjectId("4fdaaf1176c5c9fca444ffd3"), "date" : "2012-06-14", "pageview" : 1, "url" : "/mongo/test.php", "visitors" : [ { "ip" : "192.168.1.1", "pageview" : 1 } ] }

刷新页面后,添加奇怪的数据:

> db.counter.find();
{ "_id" : ObjectId("4fdaaf1176c5c9fca444ffd3"), "date" : "2012-06-14", "pageview" : 2, "url" : "/mongo/test.php", "visitors" : [ { "ip" : "192.168.1.1", "pageview" : 2 }, { "ip" : "192.168.1.1" } ] }

如何更正查询并防止插入额外的IP?感谢。

1 个答案:

答案 0 :(得分:1)

如果我做对了你的粘贴代码每次都以这种方式执行? 你得到另一个ip条目的问题是'$addToSet' => array('visitors' => array('ip' => $ip))'$addToSet' => array('visitors' => array('ip' => $ip)),因为你的数组不包含只有ip的字段,它会插入另一个(你的字段还有一个pageview属性)。你需要有一个完全匹配 不确定是否有这个问题的一些指导方针,但我认为你应该采用这样的方式,作为文档结构:

{_ id:ObjectId(.....),...,访客:{192.168.1.1:{pageview:1}}。所以你可以简单地运行这个更新命令(在mongoshell语法中),它进一步将两个更新组合成一个:):

db.c.update({"url":"/test.php","date":"today"},{$inc : {"192.168.1.1" : {pageview:1}, pageview: 1}},true)更新您的文档。无论如何,你需要将这些点替换为其他角色,否则它将不起作用。