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.

IronPython vs cPython benchmarks

24 pointsby iamelgringoabout 15 years ago

5 comments

itgoonabout 15 years ago
Well, it was pretty lopsided, but there were some things that IPy was pretty good at. Exceptions are much more efficient, there were some bright spots in dictionary and string manipulation.<p>Given that CPython is about Python, whereas IronPython is about Python and the MS environment (libraries, IIS, MSSQL, etc.), it looks like a decent alternative if you like Python, or are just tired of C#.
评论 #1201192 未加载
poabout 15 years ago
Can someone please remind me why interpreter startup time matters? Maybe it's because I originally came from Java-land. I really don't get it.
评论 #1201110 未加载
评论 #1201417 未加载
评论 #1201122 未加载
评论 #1204276 未加载
评论 #1201992 未加载
评论 #1201234 未加载
评论 #1202731 未加载
评论 #1201778 未加载
scorpioxyabout 15 years ago
At the day job, they run an all-MS-windows environment. So i use IronPython to write administration scripts for the database and to do some calculation or migrate datasets or things like that.<p>It is definitely slow, but I am willing to deal with that because Python as a language shines with such tasks.(or any dynamic language I guess)
评论 #1202061 未加载
bad_userabout 15 years ago
Last time I tried IronPython (~ 2 months ago) it was painfully slow ... slower than Jython which is really discouraging since they've put some effort into this for quite some time now (also hiring Jim Hugunin, the lead Jython dev).
scottyangabout 15 years ago
What about memory consumption? What's the maximum memory CPython or IronPython would use to run through one of the benchmarks?