mongo
奋斗者ing
不完美才能促使进步,去追求完美!
展开
-
Mongo客户端报....which requires the binary sub type to be UuidLegacy, not UuidStandard
Refreshing 'xxxx_db' database...The GuidRepresentation for the reader is CSharpLegacy, which requires the binary sub type to be UuidLegacy, not UuidStandard. 原因是我本地使用的客户端版低了,这个起因是DBa团队把mongodb的服务端升级到了3.6.4版本; 处理方式式,下载一个最新版的客户端即可 ...原创 2020-06-11 11:30:04 · 360 阅读 · 0 评论 -
mongodb中高级函数的使用
https://docs.spring.io/spring-data/data-mongo/docs/current/reference/html/#mongo-template.find-and-upsert原创 2019-12-24 14:02:30 · 273 阅读 · 0 评论 -
mongodb数据条目过大,需要对一些数据进行过期设置
Mongodb自带时间过期删除的机制,其机制主要是使用Time To Live(TTL) 索引实现的 注意:以下集中情况是无法使用TTL索引的 (1)TTL索引是单字段索引,混合索引不支持TTL,并且也会忽略expireAfterSeconds属性 (2)在_id 主键上不能建立TTL索引 (3)在capped collection中不能建立TTL索引,因为MongoDB不能从capped ...原创 2019-07-09 10:23:57 · 678 阅读 · 0 评论