Earlier quoted context omitted.
Dont forget, pypy is fast.
Faster that CPython doesn't mean it is fast.
Show HN: ZFS Implementation in Python
41–50 of 97 posts
Re: Show HN: ZFS Implementation in Python
#42Re: Show HN: ZFS Implementation in Python
#43Earlier quoted context omitted.
Faster that CPython doesn't mean it is fast.
I was trying to speed up a log processing service running on PyPy by rewriting it in Java. I was surprised that the result was about twice slower (I know Java quite well and I didn't see obvious optimizations; most of the time was spent in GC). So it can be quite fast even in more absolute terms (VM languages), at least for some types of code.
Re: Show HN: ZFS Implementation in Python
#44What?! How?! Why?! This is the greatest thing ever. I wish I could just write code for the fun of it. Every time I wonder whether people will use it and give up before I even get started.
why not? writing code can fall into one of a few bucket. one of them is play.
Re: Show HN: ZFS Implementation in Python
#45Re: Show HN: ZFS Implementation in Python
#46Earlier quoted context omitted.
Faster that CPython doesn't mean it is fast.
I was trying to speed up a log processing service running on PyPy by rewriting it in Java. I was surprised that the result was about twice slower (I know Java quite well and I didn't see obvious optimizations; most of the time was spent in GC). So it can be quite fast even in more absolute terms (VM languages), at least for some types of code.
Re: Show HN: ZFS Implementation in Python
#47Earlier quoted context omitted.
Faster that CPython doesn't mean it is fast.
I was trying to speed up a log processing service running on PyPy by rewriting it in Java. I was surprised that the result was about twice slower (I know Java quite well and I didn't see obvious optimizations; most of the time was spent in GC). So it can be quite fast even in more absolute terms (VM languages), at least for some types of code.
Re: Show HN: ZFS Implementation in Python
#48Earlier quoted context omitted.
I was trying to speed up a log processing service running on PyPy by rewriting it in Java. I was surprised that the result was about twice slower (I know Java quite well and I didn't see obvious optimizations; most of the time was spent in GC). So it can be quite fast even in more absolute terms (VM languages), at least for some types of code.
I know that it’s asking a lot, but any chance that you can post a minimum reproducible sample? From what I know it is quite smelly...