美文网首页
MongoDB的push与set

MongoDB的push与set

作者: g0 | 来源:发表于2018-08-14 15:08 被阅读17次
Mongo.coll['res'].update({'ip':ip},
                                     {"$set":{'port.'+str(i):scan_info[i]['name']}})
image.png

更新于20180814
————————————————————————————————


push操作,将数据不断地插入列表中并且在mongodb中提现

from libs.Conn_scan import Mongo
for i in xrange(10):
    for k in xrange(3):
        print i
        try:
            Mongo.coll['1'].update({"URL":'www.test.com'},
                                           {"$push": {str(i) : str(k) }},
                                           upsert = True)
        except Exception,e:
            print str(e)
v image.png

相关文章

网友评论

      本文标题:MongoDB的push与set

      本文链接:https://www.haomeiwen.com/subject/ublvbftx.html