Announcing Topaz: A New Ruby
docs.topazruby.com
Announcing Topaz: A New Ruby
1–10 of 190 posts
Re: Announcing Topaz: A New Ruby
#2I also dislike the "high performance" claims without showing a single performance comparison. Not to mention the state of implementation completeness of the language.
Re: Announcing Topaz: A New Ruby
#3Why not implemented on Erlang OTP? Ruby and Python share the same scaling issues, so I don't see a benefit it combining them or migrate from one to the other. I also dislike the "high performance" claims without showing a single performance comparison. Not to mention the state of implementation completeness of the language.
Re: Announcing Topaz: A New Ruby
#4Re: Announcing Topaz: A New Ruby
#5Why not implemented on Erlang OTP? Ruby and Python share the same scaling issues, so I don't see a benefit it combining them or migrate from one to the other. I also dislike the "high performance" claims without showing a single performance comparison. Not to mention the state of implementation completeness of the language.
Re: Announcing Topaz: A New Ruby
#6Re: Announcing Topaz: A New Ruby
#7Why not implemented on Erlang OTP? Ruby and Python share the same scaling issues, so I don't see a benefit it combining them or migrate from one to the other. I also dislike the "high performance" claims without showing a single performance comparison. Not to mention the state of implementation completeness of the language.
Re: Announcing Topaz: A New Ruby
#8Why not implemented on Erlang OTP? Ruby and Python share the same scaling issues, so I don't see a benefit it combining them or migrate from one to the other. I also dislike the "high performance" claims without showing a single performance comparison. Not to mention the state of implementation completeness of the language.
Additionally, erlang has avoided scaling issues by being functional. This might be good or bad, depending on your viewpoint, but just implementing a ruby interpreter in erlang won't cut, because you're not answering any of the hard questions about the state. You might answer "meh, ruby is just a broken language", but well, this has nothing to do with that article.
Re: Announcing Topaz: A New Ruby
#9I'm curious to see how this compares to MRI/Rubinius/JRuby once it's feature-complete; the PyPy vs. CPython benchmarks these days are pretty convincing.
Re: Announcing Topaz: A New Ruby
#10 $ time ruby -e "puts 'hello world'"
hello world
real 0m0.184s
user 0m0.079s
sys 0m0.092s
$ time ~/Downloads/topaz/bin/topaz -e "puts 'hello world'"
hello world
real 0m0.007s
user 0m0.002s
sys 0m0.004s