• fasthttp高性能之道(一)

    本篇是fasthttp高性能知道的第一篇,我计划用四篇博客来分析一下fasthttp这个库,也帮助自己更好地了解高并发HTTP服务器的设计思路。

    Read more
  • 压力测试简介

    压力测试的相关介绍,涵盖函数的benchmark、接口的压测、简单服务压测、分布式系统压测及压测工具的开发相关内容。

    Read more
  • 打造基于WSL的开发环境

    现有工作电脑是只有8G内存的Dell笔记本,操作系统是window10家庭版,由于Linux上钉钉、Office等的支持不太好,又没有Macbook可用,笔者一直以来都是在虚拟机上用Linux来工作,但是8G内存对于后端开发实在不太够用,写代码的时候总是缺乏一种爽快感。

    Read more
  • 敏捷研发二三事

    RSG(Regional Scrum Gathering)这两天在上海召开,看了下朋友圈里的分享主题,颇有感触。敏捷研发走过这么多年,很多地方依然是李逵与李鬼并存,很多时候过多地谈论术而忽视了道的本源,于是便想窥一下敏捷的前世今生,为自己作下梳理和总结。

    Read more
  • elasticsearch和filebeat学习笔记

    elasticsearch安装、维护以及Filebeat module编写相关的笔记,备忘。

    Read more
  • A glance of web test automation

    I’m not sure how many people in the world are out of Internet. But Internet did great success in past 20 years, what ever the content and the technology. That is impossible for me to summarize the technologies used in the past 20 years, I can only list the technology I have used or heard, and the related test automation solutions to this technologies.

    Read more
  • Inject a running robotframework process

    Robotframework is a widely used ATDD framework. Sometime the test suite become very large and complicated. In my company, some suites contain thousands of execution steps and last over 12 hours. I was always questioned on such scenario:

    Read more
  • 使用pandas进行数据处理

    最近开始学习pandas用来作为数据分析的入门,这里将最近的学习所得记录在这里,以作小结。

    Read more
  • Python设计模式 - 代理模式

    代理模式在实际开发中应用极为广泛,通过它能把原本复杂而耗时的操作优雅地隐藏起来,提供简洁的接口,比如对与远程RESTful API的调用,对于系统命令的操作等。

    Read more
  • Python设计模式 - 工厂模式

    工厂模式可能是最为著名的设计模式了,我记得自己在还没有看过任何有关设计模式的书或文章的时候,就对自己的代码进行过一些重构,而这些重构绝大多数用的都是类似工厂模式的方法。

    Read more