1
args 2014-02-21 23:34:14 +08:00 via Android
3.4还没正式发布呢。把你说的评测打出来大家看看!?
|
2
VYSE 2014-02-22 02:27:59 +08:00 1
http://docs.python.org/3.4/library/asyncio.html
其实现在的很多异步方案(gevent,tornado,twist)性能已经很高了 |
3
wwqgtxx 2014-02-22 07:10:29 +08:00 via Android
还在用2.7呢
|
5
Shared 2014-02-22 08:47:04 +08:00
正式发布了吗?我的所有项目都是用 3.3 写的,如果没什么显著的兼容问题就升上去好了
|
7
pc10201 OP |
8
thinkif 2014-02-22 09:32:39 +08:00
|
10
shiny 2014-02-22 12:16:39 +08:00
更多性能问题是出在架构方式上的。用 python3一段时间后就后悔了,因为部署起来远没有 python2 方便。
|
15
shiny 2014-02-23 12:55:05 +08:00
@wuxqing 我用 python3.3 安装 pymongo 的时候提示 “error: in 'ext_modules' option (extension 'bson._cbson'), 'sources' must be present and must be a list of source filenames”。我从 debian换到ubuntu,问题是一样的;而之前在另一个debian系统上却什么问题也没有。
python3.2却没有问题。这样导致 tornado 的return得用 raise 代替。花费了我一天时间,还影响心情。 如果是python2,就算 requirements.txt不行,用apt-get install python-pymongo妥妥的。 |
16
yakczh 2014-02-26 10:03:36 +08:00
pip install urllib2
Downloading/unpacking urllib2 Real name of requirement urllib2 is urllib3 Could not find any downloads that satisfy the requirement urllib2 Cleaning up... No distributions at all found for urllib2 python2 -> urllib2 python3 -> urllib3 python4 ->urllib4 |