mongodb中随机获取1条记录的实现方法
程序员文章站
2022-04-12 22:59:53
实现原理如下
1.先查询表中的记录总数
2.随机获取偏移量为0~总记录数-1
...
实现原理如下
1.先查询表中的记录总数
2.随机获取偏移量为0~总记录数-1
3.查询时skip偏移量,再获取1条记录
因本人测试环境php已升级到7.0以上,mongodb扩展使用支持php7.0以上的扩展,很多方法与php5.6不同。因此代码必须在php7.0以上运行。如果是php5.6环境,需要修改代码才能运行。
代码如下:
function.php
<?php // 连接mongodb function conn($host, $user, $passwd){ $server = 'mongodb://'.$user.':'.$passwd.'@'.$host; try{ $conn = new mongodb\driver\manager(); } catch (mongodb\driver\exception\connectionexception $e){ throw new errorexception('unable to connect to db server. error:' . $e->getmessage(), 31); } return $conn; } // 插入数据 function add($conn, $dbname, $collname, $data, $index){ // 创建索引 $cmd = array( 'createindexes' => $collname, 'indexes' => array( array( 'name' => 'index', 'key' => $index, 'ns' => $dbname.'.'.$collname ) ) ); $command = new mongodb\driver\command($cmd); $conn->executecommand($dbname, $command); // 插入数据 $bulk = new mongodb\driver\bulkwrite(); $inserted = 0; if($data){ foreach($data as $k=>$v){ $bulk->insert($v); } $result = $conn->executebulkwrite($dbname.'.'.$collname, $bulk); $inserted = $result->getinsertedcount(); } return $inserted; } // 获取总记录数 function getcount($conn, $dbname, $collname){ $cmd = array( 'count' => $collname, 'query' => array() ); $command = new mongodb\driver\command($cmd); $result = $conn->executecommand($dbname, $command); $response = current($result->toarray()); if($response->ok==1){ return $response->n; } return 0; } // 随机获取一条记录 function randone($conn, $dbname, $collname){ // 总记录数 $total = getcount($conn, $dbname, $collname); // 随机偏移 $skip = mt_rand(0, $total-1); $filter = array(); $options = array('skip'=>$skip, 'limit'=>1); $query = new mongodb\driver\query($filter, $options); $cursor = $conn->executequery($dbname.'.'.$collname, $query); $result = array(); if($cursor){ foreach($cursor as $v){ $v = objecttoarray($v); unset($v['_id']); $result[] = $v; } } return $result? $result[0] : $result; } // 对象转为数组 function objecttoarray($obj){ $arr = is_object($obj) ? get_object_vars($obj) : $obj; if(is_array($arr)){ return array_map(__function__, $arr); }else{ return $arr; } } ?>
demo.php
<?php require('function.php'); // 连接mongodb $conn = conn('localhost','testdb','root','123456'); // 插入50条数据记录 $data = array(); // 索引 $index = array('user'=>true); for($i=0; $i<50; $i++){ $data[] = array( 'user' => 'test_user_'.str_pad($i, 4, '0', str_pad_left) ); } $inserted = add($conn, 'testdb', 'user', $data, $index); echo '成功插入'.$inserted.'条测试记录数<br><br>'; // 随机获取一条记录,抽5次 echo '随机获取一条记录,抽5次<br>'; $result = array(); for($i=0; $i<5; $i++){ $result[] = randone($conn, 'testdb', 'user'); } echo '<pre>'; print_r($result); echo '</pre>'; ?>
输出:
成功插入50条测试记录数
随机获取一条记录,抽5次
array ( [0] => array ( [user] => test_user_0017 ) [1] => array ( [user] => test_user_0026 ) [2] => array ( [user] => test_user_0004 ) [3] => array ( [user] => test_user_0043 ) [4] => array ( [user] => test_user_0023 ) )
测试php代码,首先需要在mongodb创建testdb
及创建用户和执行auth
。
方法如下:
use testdb db.createuser( { "user":"root", "pwd":"123456", "roles":[{"role" : "readwrite", "db":"testdb"}] } ) db.auth( { "user":"root", "pwd":"123456" } )
总结
以上就是这篇文章的全部内容,希望本文的内容对大家的学习或者工作能有所帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。