-
db.collection.update(<query>,<update>,{upsert: <boolean>,multi: <boolean>,writeConcern: <document> } ) 参数说明: query : update的查询条件 update : update的对象和一些更新的操作符(如$,$inc...)等 upsert : 可选,这个参数的意思是,如果不存在update的记录,是否插入objNew,true为插入,默认是false multi : 可选,mongodb 默认是false,只更新找到的第一条记录 writeConcern :可选,抛出异常的级别查看全部
-
update 参数 true 如果更新的数据不存在,则自动添加一条查看全部
-
$text $text vs $nor $text vs hint查看全部
-
db.local_2.find({$text:{$search:"aa bb"}}),{score:{$meta:"textScore"}}).sort({score:{$meta:"textScore"}})查看全部
-
db.local_2.ensureIndex({"article":"text"}) db.local_2.insert({"article":"aa bb cc rr hh asdfasdf dd"}) db.local_2.insert({"article":"cc"}) db.local_2.find({$text:{$search:"aa bb cc"}}) //只有一个全文索引 db.local_2.find({$text:{$search:"cc"}}) db.local_2.find({$text:{$search:"-cc aa"}}) db.local_2.find({$text:{$search:" \"aa\" \"cc\" \"bb\" "}})查看全部
-
db.articles.ensureIndex({key:"text"}) db.articles.ensureIndex({key1:"text",key2:"text",key3:"text"}) db.articles.ensureIndex({"$**":"text"})查看全部
-
对字符串和字符串数组创建全文可搜索的索引查看全部
-
mongo 127.0.0.1:12345/test db.local_2.ensureIndex({time:1},{expireAfterSeconds:30}) db.local_2.insert({time:new Date()}) db.local_2.find() 没60s执行一次过期扫描查看全部
-
db.local_2.ensureIndex({x:1,y:1}) db.local_2.find({x:1,y:1})查看全部
-
mongo 127.0.0.1:12345/local_2 db.local_2.getIndexes() db.local_2.find() db.local_2.insert({x:[1,3,4,5]}) db.local_2.ensureIndex({x:[1,3,4,5]})查看全部
-
mongo 127.0.0.1:12345/local_2 db.local_2.getIndexes() db.local_2.find() db.local_2.insert({x:[1,3,4,5]})查看全部
-
db.local_2.getIndexes() db.local_2.ensureIndex({x:1}) db.local_2.find({x:1})查看全部
-
_id索引 mongo 127.0.0.1:123445 show dbs use local show tables db.local_2.insert({x:1}) db.local_2.getIndexes() db.local_2.findOne()查看全部
-
索引的使用 索引的種類 索引的規則 建立索引 索引建立情況的查看評估。查看全部
-
db.local_collection.getIndexes() db.local_collection.ensureIndex({x:1}) db.local_collection.ensureIndex({x:-1}) db.local_collection.find({)查看全部
举报
0/150
提交
取消