- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
在mongodb中通常文档只会有一部分要更新,利用原子的更新修改器,可以做到只更新文档的一部分键值,而且更新极为高效,更新修改器是种特殊的键,用来指定复杂的更新操作,比如调整、增加、或者删除键,还可以操作数组和内嵌文档。增加、修改或删除键的时候,应该使用$修改器。要把"foo"的值设备"bar",常见的错误做法如下:
db.coll.update(criteria,{“foo”:“bar”})
这种情况是不对的,实际上这种做法会把整个文档用{“foo”:“bar”}替换掉,一定要使用以$开头的修改器来修改键/值对。
修改器$inc
可以对文档的某个值为数字型(只能为满足要求的数字)的键进行增减的操作
> db.user.save({"uid":"202203","type":"1",size:10})
WriteResult({ "nInserted" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 10 }
> db.user.update({"uid" : "202203"},{"$inc":{"size" : 1}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 11 }
> db.user.update({"uid" : "202203"},{"$inc":{"size" : 2}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 13 }
> db.user.update({"uid" : "202203"},{"$inc":{"size" : -1}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 12 }
用来指定一个键并更新键值,若键不存在并创建
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 12 }
# 给键不存在的时候赋值
> db.user.update({"uid":"202203","type":"1","size":12},{"$set":{"name":"zhangsan"}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 12, "name" : "zhangsan" }
# 给键存在的时候赋值
> db.user.update({"uid":"202203","type":"1","size":12},{"$set":{"name":"lisi"}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 12, "name" : "lisi" }
# 可改变键的值类型
> db.user.update({"uid":"202203","type":"1","size":12},{"$set":{"name":["java",".net","c++"]}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 12, "name" : [ "java", ".net", "c++" ] }
# 对于内嵌文档
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 12, "name" : [ "java", ".net", "c++" ] }
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 10, "width" : 5, "length" : 15 } }
> db.user.update({"name":"toyota"},{"$set":{"size.height":8}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 12, "name" : [ "java", ".net", "c++" ] }
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 } }
可见:对于内嵌文档在使用$set更新时,使用"."连接的方式。
从字面就可以看出其意义,主要是用来删除键
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "size" : 12, "name" : [ "java", ".net", "c++" ] }
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 } }
> db.user.update({"uid" : "202203","type" : "1"},{"$unset":{"size":1}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1", "name" : [ "java", ".net", "c++" ] }
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 } }
> db.user.update({"uid" : "202203","type" : "1"},{"$unset":{"name":0}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203", "type" : "1" }
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 } }
> db.user.update({"uid" : "202203","type" : "1"},{"$unset":{"type":-1}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c5b308f967a1701d89d2"), "uid" : "202203" }
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 } }
使用修改器$unset时,不论对目标键使用1、0、-1或者具体的字符串等都是可以删除该目标键
upsert是一种特殊的更新。当没有符合条件的文档,就以这个条件和更新文档为基础创建一个新的文档,如果找到匹配的文档就正常的更新
使用upsert,既可以避免竞态问题,也可以减少代码量(update的第三个参数就表示这个upsert,参数为true时)
> db.user.find()
{ "_id" : ObjectId("6220d4a308f967a1701d89d5"), "size" : 11 }
> db.user.save({"size":11},{$inc:{"size":3}})
WriteResult({ "nInserted" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220d4a308f967a1701d89d5"), "size" : 11 }
{ "_id" : ObjectId("6220d4be08f967a1701d89d6"), "size" : 11 }
> db.user.update({"size":11},{$inc:{"size":3}},false)
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220d4a308f967a1701d89d5"), "size" : 14 }
{ "_id" : ObjectId("6220d4be08f967a1701d89d6"), "size" : 11 }
> db.user.update({"size":11},{$inc:{"size":3}},true)
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220d4a308f967a1701d89d5"), "size" : 14 }
{ "_id" : ObjectId("6220d4be08f967a1701d89d6"), "size" : 14 }
可以在文档不存在的时候插入,存在的时候更新,只有一个参数文档
要是文档含有"_id",会调用upsert。否则,会调用插入
> db.user.find()
{ "_id" : ObjectId("6220d63b08f967a1701d89d7"), "name" : "lisi", "age" : "23" }
> db.user.save({"_id":ObjectId("6220d63b08f967a1701d89d7"),"name":"zhangsan"})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220d63b08f967a1701d89d7"), "name" : "zhangsan" }
$push
–向文档的某个数组类型的键添加一个数组元素,不过滤重复的数据。添加时键存在,要求键值类型必须是数组;键不存在,则创建数组类型的键
> db.user.find()
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 } }
# 先push一个当前文档中不存在的键title
> db.user.update({"name":"toyota"},{$push:{"title":"t1"}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 }, "title" : [ "t1" ] }
# 再向title中push一个值
> db.user.update({"name":"toyota"},{$push:{"title":"t2"}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 }, "title" : [ "t1", "t2" ] }
# 再向title中push一个值
> db.user.update({"name":"toyota"},{$push:{"title":"t2"}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 }, "title" : [ "t1", "t2", "t2" ] }
$pop
、$pull
$pop从数组的头或者尾删除数组中的元素
> db.user.find()
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 }, "title" : [ "t1", "t2", "t2", "t3", "t4" ] }
# 从数组的尾部删除 1
> db.user.update({"name":"toyota"},{$pop:{"title":1}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 }, "title" : [ "t1", "t2", "t2", "t3" ] }
# 从数组的头部 -1
> db.user.update({"name":"toyota"},{$pop:{"title":-1}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 }, "title" : [ "t2", "t2", "t3" ] }
$pull从数组中删除满足条件的元素
> db.user.find()
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 }, "title" : [ "t2", "t2", "t3" ] }
> db.user.update({"name" : "toyota"},{$pull:{"title":"t2"}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220c9ee08f967a1701d89d3"), "name" : "toyota", "type" : "suv", "size" : { "height" : 8, "width" : 5, "length" : 15 }, "title" : [ "t3" ] }
在需要对数组中的值进行操作的时候,可通过位置或者定位操作符("$").数组是0开始的,可以直接将下标作为键来选择元素
> db.user.find()
{ "_id" : ObjectId("6220d21608f967a1701d89d4"), "uid" : "001", "comments" : [ { "name" : "t1", "size" : 10 }, { "name" : "t2", "size" : 12 } ] }
> db.user.update({"uid":"001"},{$inc:{"comments.0.size":11}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.user.find()
{ "_id" : ObjectId("6220d21608f967a1701d89d4"), "uid" : "001", "comments" : [ { "name" : "t1", "size" : 21 }, { "name" : "t2", "size" : 12 } ] }
我已经在 kubernetes 中部署了一个 3 pod mongodb statefulset,并且我正在尝试使用新的 mongodb+srv 连接字符串 (mongodb 3.6) 连接到具有 S
我已经创建了 MongoDB Atlas 帐户,并尝试连接。但出现以下错误。 MongoDB 连接错误 MongoNetworkError: 首次连接时无法连接到服务器 [cluster0-shard
我正在使用 Node-WebKit 创建桌面应用程序。该应用程序基本上是创建文档(员工日常工作的详细信息),任何注册用户都可以对这些文档发表评论。我正在创建的文档将被分成几个部分。用户将对特定部分发表
我正在尝试使用官方网站上的安装程序在我的本地机器上安装 mongo DB。但是我不断收到这条消息,有人可以帮忙吗? 我试过提供的解决方案 here但没有帮助。 最佳答案 我建议执行以下操作: 按 Wi
我对 MongoDB 和 MongoDB Compass 非常陌生。 我的客户集合中有大约 1000 条记录。如何通过 MongoDB 指南针一次删除所有记录。 非常感谢, 最佳答案 您可以使用 Mo
当我尝试在我的 Ubuntu 机器中安装 mongodb 时,apt-get 会显示以下选项 mongodb mongodb-clients mongodb-dev mongodb-server 谁能
如何将 Robomongo(或任何其他 mongodb 客户端)连接到由本地 Meteor 应用程序创建的 mongodb 实例? 最佳答案 确保 Meteor 正在本地主机上运行。打开终端窗口并运行
我需要在 MongoDB 中生成一个简单的频率表。假设我在名为 books 的集合中有以下文档。 { "_id": 1, genre: [ "Fantasy", "Crime"
我如何在 mongos mapreduce 中指定一个条件,就像我们在 mongos group 函数中所做的那样。 我的数据是这样的 {lid:1000, age:23}, {lid:3000, a
我的 mongodb 数据库文档中有几个 ID。我需要通过脚本在这些 ID 上创建索引,这样我就不必一次又一次地运行 ensureIndex 命令。 db.getCollection("element
在我的数据库中,每个包含项目的文档中都有一个嵌套的元素数组,格式如下: elements:[ { "elem_id": 12, items: [ {"i_id": 1
我正在构建一个应用程序,其中用户可以位于不同的时区,并且我运行的查询对他们的时区很敏感。 我遇到的问题是 MongoDB 似乎在查询时忽略了时区! 这是日期字段“2019-09-29T23:52:13
我正在研究使用 mongodb 进行分片,我有以下结构: 1 个 Mongod 到我的 ConfigServer,在 ReplicaSet 中只有 1 个成员 2 个分片,每个分片在 ReplicaS
我正在尝试获取一个 mongoDB 对象,例如 Friend1 包含另一个 mongoDB 对象 Friend2,该对象又包含第一个对象 Friend1本质上使它成为一个循环对象引用。 要么这样,要么
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 9年前关闭。 Improve this que
Mongo 版本 5.0.2。 Ubuntu 20.0 我在本地主机中启用了 MongoDB 连接的安全性。 我正在尝试通过以下命令使用身份验证详细信息连接我的本地主机 MongoDBmongo ad
我即将将分片的 MongoDB 环境从 2.0.7 升级到 2.2.9,最终我想升级到 2.4.9,但显然我需要通过 2.2 来完成。 2.2 的发行说明声明配置服务器应该首先升级其二进制文件,然后是
目前,我无法在我的虚拟 Ubuntu 机器上远程连接 mongodb 服务器。我无法使用在我的 Windows PC 上运行的 Robomongo 客户端连接,该 PC 也运行 vm。 这是两台电脑的
我创建了一个免费的 mongodb 集群。我创建了一个用户,设置了与 mongodb compass 的连接,复制了连接字符串,然后打开了我的 mongodb compass。将复制的字符串粘贴到那里
我使用 java 代码创建了 mongo 数据库集合索引 dbCollection.createIndex("accountNumber"); 当我看到索引使用 db.accounts.getInde
我是一名优秀的程序员,十分优秀!