惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Vulnerabilities – Threatpost
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
aimingoo的专栏
aimingoo的专栏
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
F
Fortinet All Blogs
C
CERT Recently Published Vulnerability Notes
Spread Privacy
Spread Privacy
月光博客
月光博客
L
LINUX DO - 热门话题
C
Cisco Blogs
P
Proofpoint News Feed
C
Cyber Attacks, Cyber Crime and Cyber Security
爱范儿
爱范儿
B
Blog
P
Privacy International News Feed
Know Your Adversary
Know Your Adversary
The Cloudflare Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Cyberwarzone
Cyberwarzone
J
Java Code Geeks
罗磊的独立博客
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Cisco Talos Blog
Cisco Talos Blog
T
Tor Project blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 司徒正美
酷 壳 – CoolShell
酷 壳 – CoolShell
Simon Willison's Weblog
Simon Willison's Weblog
量子位
H
Help Net Security
The Register - Security
The Register - Security
L
LangChain Blog
GbyAI
GbyAI
Vercel News
Vercel News
S
Schneier on Security
T
Threatpost
T
Threat Research - Cisco Blogs
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog
MongoDB | Blog
MongoDB | Blog
Recorded Future
Recorded Future
G
GRAHAM CLULEY
MyScale Blog
MyScale Blog

博客园 - myx

安装gitlab管理自己的代码 升级Tornado到4后weibo oauth登录不了 SQL Server 无日志文件附加数据库 用monit监控系统关键进程 Failed to read auto-increment value from storage engine错误的处理方法 PIL The _imaging C module is not installed phpExcel大数据量情况下内存溢出解决 tcpdf慢及常用的一些方法及问题 Python获取WebService CodeIgniter出现Disallowed Key Characters的问题 CodeIgniter链接ms sql 如果数据库名称有点号连接出错 用python写windows服务 CodeIgniter链接ms sql 的过程windows 2008 关于NTLM认证的.NET,php,python登录 DotNetOpenAuth的Facebook登录,获取头像与基本资料 php里的html内容切取 js生成新加坡的NRIC号码 Sina站内应用的登录 PowerDesigner 链接MySql 用ODBC链接不上的问题
今天测试了一下 sqlalchemy 性能
myx · 2013-07-25 · via 博客园 - myx

self.db.query(Users).filter(Users.Id==1).first() < self.db.execute('SELECT *  FROM `users` WHERE Id=%s' % user_id).first() < self.db.queryRow('SELECT * FROM `users` WHERE `Id`=%s' % user_id)

sqlalchemy的echo=False的

ab测试如下:
ab -n 2000 -c 50 http://127.0.0.1:8888/

self.db.query(Users).filter(Users.Id==1).first()  的 

Requests per second:    460.00左右 [#/sec] (mean)

self.db.execute('SELECT *  FROM `users` WHERE Id=%s' % user_id).first() 

Requests per second:    860.00左右 [#/sec] (mean)

下面这个为 MySQLdb

self.db.queryRow('SELECT * FROM `users` WHERE `Id`=%s' % user_id)

Requests per second:    1110.00左右 [#/sec] (mean)

在想是否是用MySQLdb好呢还是用sqlalchemy好。

这MySQLdb我也改了下代码的:基本的CRUD如下:

    db = db(host='localhost', user='root', passwd='password', port=3306, db='test', charset='utf8');
    #row = db.queryRow('SELECT @@version')
    row = db.queryRow('SELECT   `id`,  `name` FROM `test` WHERE id=2')
    if(row):
        print row['name']
    else:
        print '123'
    
    data = {}
    data['UserName'] = "mytest??"
    data['Email'] = "my2@test.com"
    data["Age"] = 26
    data["money"] = 6254.258
    #data['bc']="def"
    #data['flt']=38.5
    #添加数据
    #print db.execute_insert('mytb',data)
    #修改数据
    print db.execute_update('mytb', data, {'id':1, "Age":24})
    row = db.queryRow('select * from mytb where id = %s', (2))
    print row['UserName']
    
    for item in db.queryAll('select * from mytb'):
        print item['UserName']

 据说 amysql  的性能比MySQLDb 快2.5倍。