简单封装一下 mysql-connector-python pool 2017-06-13 数据库 背景 网上看了一圈,没有发现比较顺手的 python mysql 连接池,甚至很多都是错误的实现。 oracle 官方发布的 mysql-connector-python 库给出了一个 pool 的实现,但是使用起来有点麻烦。 于是乎简单 Read more...
apscheduler 定时任务器的使用笔记 2017-02-19 python 七种scheduler BlockingScheduler: 当应用程序中只有调度器时使用 BackgroundScheduler: 不使用任何以下框架:asyncio, gevent, Tornado, Twisted, Qt, 并且需要在你的应用程序后台运行调度程序 AsyncIOScheduler: 应 Read more...
torndb 使用和事务处理 2017-02-19 数据库 建立连接 时区设定东8区 time_zone='+8:00' 字符集默认为 UTF8(或者加上 charset="utf8") autocommit 默认为 True,启动自动提交(重要 Read more...
websocket 协议小实验 2017-01-08 计算机原理 一、websocket 报文格式 websocket 报文格式 二、实验代码 客户端 client.html 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 <html> <head> <script type="text/javascript" src="/media/js/jquery-1.7.1.min.js"> Read more...
mysql 读写分离实践 mysql-proxy(atlas) + mha + vip 2016-11-04 数据库 一、实验材料 1 外部环境 amd64主机 Windows x64 Oracle VM VirtualBox 2 实验环境 (文章最后有下载链接) VirtualBox的4个虚拟机debian x64 mysql-proxy (Atlas) mha 二、实验步 Read more...