摘要: MQ全称为Message Queue,是一种应用程序对应用程序的通信方法,应用程序通过读写出入消息队列的数据来通信,从而无需专用连接来链接他们(如RPC)。 消息队列是典型的生产者和消费者模型,生产者和消费者只关心消息的发送和接受,没有业务逻辑的侵入,实现了生产者和消费者的解耦。 AMQP:一个提供 阅读全文
posted @ 2020-04-23 22:27 caoyp 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: 官方文档:http://dubbo.apache.org/zh-cn/docs/user/quick-start.html 服务与服务之间接口调用的RPC框架 阅读全文
posted @ 2020-04-17 17:49 caoyp 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 参考文档:https://blog.csdn.net/Viogs/article/details/83339783#源码展示 https://cloud.tencent.com/developer/article/1525342 阅读全文
posted @ 2019-12-02 16:05 caoyp 阅读(214) 评论(0) 推荐(0) 编辑
摘要: docker相关文章 https://testerhome.com/topics/9522 docker安装 1.系统要求 centos 7 以上 2.环境要求 # 关闭防火墙systemctl stop firewalldsystemctl disable firewalld 3.docker安装 阅读全文
posted @ 2019-08-14 18:54 caoyp 阅读(160) 评论(0) 推荐(0) 编辑
摘要: jmeter组件的执行顺序 同一组件不同层级的作用域不同 http cookie manager 能自动将请求响应中的cookie带入到下次请求中 user define varible 组件无论层级如何,所有组件都能拿到定义的变量 组件: http request defaults :可以配置默认 阅读全文
posted @ 2019-08-14 13:49 caoyp 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 以百度首页为例: 定位输入框 一:单一属性定位 1:type selector driver.find_element_by_css_selector('input') 2:id 定位 driver.find_element_by_css_selector('#kw') 3:class 定位 dri 阅读全文
posted @ 2019-06-14 17:22 caoyp 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 获取当前的activity adb shell dumpsys window | findstr mCurrentFocus adb logcat| grep ActivityManager adb shell dumpsys activity activities获取映射列表 adb forwar 阅读全文
posted @ 2019-05-24 15:50 caoyp 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 数据类型 数字类型 int long float complex (复数) c1=3.14j //创建一个复数 python3以后没有long类型 a="10"; b=int(a); //将字符串转为int a=10; b=float(a) //将整型转为浮点型 list=["aaa",1,2,5] 阅读全文
posted @ 2019-04-17 18:54 caoyp 阅读(313) 评论(0) 推荐(0) 编辑
摘要: linux下查看cpu的个数及核数 查看物理cpu个数 grep 'physical id' /proc/cpuinfo 查看核心数量 grep 'core id' /proc/cpuinfo 在某些情况下,很多指令我想要一次输入去执行,而不想要分次去执行时,就要用到 && || 了。cmd 1 & 阅读全文
posted @ 2019-03-28 20:40 caoyp 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 1、安装EmailExtension插件 2、系统配置中添加如下配置 Default Subject : 【构建通知】:$PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS! Default Content: <!DOCTYPE html> <h 阅读全文
posted @ 2018-12-19 20:25 caoyp 阅读(500) 评论(0) 推荐(0) 编辑