08 2020 档案
摘要:一、简介: RabbitMq 是实现了高级消息队列协议(AMQP)的开源消息代理中间件。消息队列是一种应用程序对应用程序的通行方式,应用程序通过写消息,将消息传递于队列,由另一应用程序读取 完成通信。而作为中间件的 RabbitMq 无疑是目前最流行的消息队列之一。 RabbitMq 应用场景广泛:
阅读全文
摘要:export ALL_PROXY=socks5://127.0.0.1:12377
阅读全文
摘要:Homebrew是一款包管理工具,目前支持macOS和linux系统。主要有四个部分组成: brew、homebrew-core 、homebrew-cask、homebrew-bottles。 本文主要介绍Homebrew安装方式以及如何加速访问,顺便普及一些必要的知识。 1. 脚本说明 Home
阅读全文
摘要:1. image运行与删除 运行image # 命令形式:docker run -ti --rm image $ docker run -ti --rm hello-world Hello from Docker! This message shows that your installation
阅读全文
摘要:show processlist展示的内容是从information_schema.processlist数据表查询得到 所以可以使用SQL语句的条件查询进行过滤 mysql> desc information_schema.processlist; + + + + + + + | Field |
阅读全文
摘要:服务端 from xmlrpc.server import SimpleXMLRPCServer # 调用函数 def respon_string(str): return "get string:%s" % str if __name__ == '__main__': server = Simpl
阅读全文
摘要:客户端 from xmlrpc.client import ServerProxy if __name__ == '__main__': server = ServerProxy("http://localhost:9001/RPC2") # 初始化服务器 print(server.system.l
阅读全文
摘要:pd.set_option('display.max_rows', 50) pd.set_option('display.max_columns', 500) pd.set_option('display.width', 1000)
阅读全文