vote up 2 vote down star

I have a fairly intensive algorithm that must be run pretty often (many times per second) in my RoR application. Considering how slow Ruby is with this kind of stuff, I don't think it would be good to do the work in Ruby.

You may be thinking I should add it to a work queue of some sort and have a C++ app work it down, but I need the result returned instantly. Is there a way to extend RoR with a C++ plugin or something? What if I something like connecting to the C++ app via a socket? Or would that just be crazy?

flag

76% accept rate
This sounds a bit argumentative... – Rich B Feb 10 at 15:57
How so? Ruby being slow for number crunching isn't even a debate, it's a fact. – ryeguy Feb 10 at 16:01

4 Answers

vote up 6 vote down check

Another alternative is RubyInline which allows you to write C/C++ code within your Ruby code. This fits in nicely with Jonas Kölker's suggestion to write the algorithm in Ruby first and then find the bottlenecks. You can then use RubyInline to optimize the bottlenecks.

link|flag
Didn't know about that. It looks awesome. +1 – DanSingerman Feb 10 at 16:40
See "Using RubyInline for Optimization" by Eric Hodel for an example: segment7.net/projects/ruby/… – floehopper Feb 10 at 16:43
vote up 8 vote down

[...] I don't think [...]

Make the measurement.

That is, if it's reasonably simple to write in Ruby, implement it in ruby first and measure. Then, if it really is too slow, find out how to get around it.

Even if you need to rewrite the algorithm in another language, you have an algorithm in ruby you basically just have to copy, so it won't be as time-consuming as writing it in (say) C++ the first time.

But measure it first.

link|flag
I understand what you're saying, but I'm asking more of HOW I would go about implementing it in another language if I needed to. – ryeguy Feb 10 at 16:14
This is crucial advice. Sorry but one should always ask "should I?" before one asks "how can I?", especially since using rubyline would actually make it harder to change the algorithm itself once you are done. – Joe Soul-bringer Feb 10 at 19:17
vote up 6 vote down

Several possibilities.

First, see if you can move to Ruby 1.9: it's dramatically faster than 1.8.

Second, there is indeed a way to write Ruby extensions in C.

Third, you could indeed write a separate process in any language you find convenient and use it. The best approach is hard to guess, since you don't really give much detail, but think about how popen works.

link|flag
vote up 1 vote down

Another possibility (if your setup allows) is to use JRuby. Then you can implement the algorithm in Java.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.