#!/usr/bin/env python #-*- coding:utf-8 -*- import os,sys,string import time import unittest from selenium import webdriver from selenium.webdriver.common.by import By #unittest是python下的单元测试模块 class WeiboDate(unittest.TestCase): #初始化,并使用Firefox浏览器驱动…
在MongoDB3.6引入的新feature中,change stream无疑是非常吸引人的. Change streams allow applications to access real-time data changes without the complexity and risk of tailing the oplog. Change stream允许应用实时获取mongodb数据的变更,这是个呼声很高的一个的需求,可以用于ETL.跨平台数据同步.通知服务等.以前没有change…