TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Pyramid's Optimizations - why it executes less code to do more work

15 pointsby cd34over 14 years ago

2 comments

btillyover 14 years ago
They are measuring speed in an unfair way.<p>According to the article, Pyramid pushes a lot of work to C code. But then they measure relative performance by how much output the Python profiler has. However anything done in C is invisible to the Python profiler. That means that time is being spent and work is being done that they are not measuring.<p>The result is probably pretty fast. But I strongly doubt it is faster by the factor that their numbers claim.
评论 #2089202 未加载
wistyover 14 years ago
OK, so Pyramid is the successor to Pylons. The article could have made that more obvious.