TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

What are you using PyPy for?

33 点作者 cjdrake大约 13 年前
PyPy was a very hot topic at Pycon this year, and I was just wondering if anyone in the HN community is actually using it for production.

9 条评论

dagw大约 13 年前
Not for 'proper' production (still missing a few libraries and C++/swig related stuff), but I have a collection of scripts that I use all the time that reads in data from various sources, does stuff to that data and then writes out that data to new files. Typing "pypy foo.py" instead of "python foo.py" gives me a 3-7 times speed up without having to make any changes to the source code. Can't really argue with that.
newhouseb大约 13 年前
Quora ran PyPy briefly before switching to Scala in production, see: <a href="http://www.quora.com/Alex-Gaynor/Posts/Quora-is-now-running-on-PyPy" rel="nofollow">http://www.quora.com/Alex-Gaynor/Posts/Quora-is-now-running-...</a>
评论 #3756385 未加载
sequenceGeek大约 13 年前
My coworkers and I use it instead of C Python for practically every script we use in our bioinformatics research. It works seamlessly, but "research scripts" are probably a perfect niche market for pypy.
huxley大约 13 年前
Mike Tigas made a PyPy buildpack for Heroku:<p><a href="http://github.com/mtigas/heroku-buildpack-pypy/" rel="nofollow">http://github.com/mtigas/heroku-buildpack-pypy/</a><p>Here's his blog post about it:<p><a href="http://v3.mike.tig.as/blog/2012/02/13/pypy-on-heroku/" rel="nofollow">http://v3.mike.tig.as/blog/2012/02/13/pypy-on-heroku/</a><p>I haven't used it on a serious project yet, but it was pretty easy to work with.
chubot大约 13 年前
I'd be curious to hear any comments on the memory consumption of PyPy, and if has become an issue in any real usage.
jhatman大约 13 年前
Check out seatgeek, I know they're using it in production. I think they do most of their string analysis with it when they are scraping other sites to collect ticket data
jey大约 13 年前
I'm waiting for PyPy's NumPy support to get a bit more complete.
kracekumar大约 13 年前
www.pylive.codespeaks.in uses pypy for sandboxing.
mvasilkov大约 13 年前
Not yet, but I'm considering it (== too lazy to implement).