- 博客(7)
- 资源 (2)
- 收藏
- 关注
原创 Mongodb查询语法
##Mongodb查询语法一.查询文档本段提供了使用 mongo shell中 db.collection.find() 方法查询的案例。案例中使用的 inventory 集合数据可以通过下面的语句产生。db.inventory.insertMany([ { item: "journal", qty: 25, size: { h: 14, w: 21, uom: "cm" }, status: "A" }, { item: "notebook", qty: 50, size: { h: 8
2022-07-07 18:11:50 4374 1
转载 Python日志
import osimport timeimport loggingimport datetimefrom logging import handlersdef record(**kwargs): filename = kwargs['filename'] level = kwargs['level'] datefmt = kwargs.pop('datefmt', None) format = kwargs.pop('format', None) if...
2022-05-09 10:46:42 121 1
原创 Mongodb时间类型转换
MongoDB存储时间类型数据时,都是先转换为UTC时间,然后存储到数据库中,当我们取出存储的时间时,就会出现时差的问题。比如我们用的北京时间,读取到的数值就会看到比当前时间少了8个小时,难道说我们在每次读取的时候都要单独处理一下时间吗,这就比较麻烦。其实,我们可以在存储的时候进行相应的处理,只需使用getTimezoneOffset()和toISOString()函数。getTimezoneOffset函数:返回此地区的时差(当地时间与GMT格林威治标准时间的地区时差),单位为分钟。 &
2022-03-31 11:00:24 3519
原创 change stream
MongoCursor<ChangeStreamDocument<Document>> cursor = null; MongoCollection<Document> collection = originMongoDao.getMongoCollection(); BsonDocument resumeToken = targetMongoDao.getResumeToken(); if (resu...
2022-03-24 10:16:55 219
原创 Mongodb_Monitor
1、wait lockdb.currentOp( { "waitingForLock" : true, $or: [ { "op" : { "$in" : [ "insert", "update", "remove" ] } }, { "query.findandmodify": { $exists: true } } ] } )2、cur_indexdb.cur...
2021-11-20 23:21:07 629
原创 apache-tomcat-8.5.13搭建
操作系统:centos7tomcat版本:apache-tomcat-8.5.13JDK版本:jdk1.8.0_651、把软件包直接解压到制定位置:tar zxvf apache-tomcat-8.5.13.tar.gzhome/tomcat/apache-tomcat-8.5.13tar zxvf jdk-8u65-linux-x64.gz /home
2017-04-21 15:34:06 1640
转载 单实例 oracle11g R2+ASM搭建
环境:vi_boxoracle linux 6.5oracle 11g 11.2.0前置任务:root@rac01 ~]# service iptables stop[root@rac01 ~]# chkconfig iptables off[root@rac01 ~]# chkconfig iptables --listiptables 0:off 1:off
2017-04-17 22:55:18 1657
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人