Issues with using ruby (on rails) in 64-bit multiple platforms - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T14:51:00Zhttp://stackoverflow.com/feeds/question/81973http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/81973/issues-with-using-ruby-on-rails-in-64-bit-multiple-platforms0Issues with using ruby (on rails) in 64-bit multiple platformsPratik Shah2008-09-17T10:53:55Z2009-05-26T12:09:42Z
<p>Has anyone used ruby in 64-bit environments in various platforms (HP=UX, Solaris, AIX etc.) in a commercial production environment that heavily relies on database.</p>
<p>Have you faced any issues / bugs during these times?</p>
<p>I know that overall things look ok. Compilation, deployment etc.
I would like to know if you encountered any 'gotcha's</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/81973/issues-with-using-ruby-on-rails-in-64-bit-multiple-platforms/89311#893111Answer by epochwolf for Issues with using ruby (on rails) in 64-bit multiple platformsepochwolf2008-09-18T01:55:00Z2008-09-18T01:55:00Z<p>I have no issues with Debian on a 64 bit platform. The only issues I've had with 64 bit linux environments is related to things like the flash plugin for Firefox. </p>
<p>Edit: I used Debian on a server and a laptop. The firefox problem was only on the laptop. (For obvious reasons)</p>
http://stackoverflow.com/questions/81973/issues-with-using-ruby-on-rails-in-64-bit-multiple-platforms/180333#1803330Answer by Orion Edwards for Issues with using ruby (on rails) in 64-bit multiple platformsOrion Edwards2008-10-07T20:46:27Z2008-10-07T20:46:27Z<p>We use it on 64-bit freebsd (mysql database server).
Ruby itself has been fine.</p>
<p>There was an issue with phusion passenger a while ago, but it's since been fixed, and we've had some issues with C extensions (notably RMagick), but we've been able to overcome them all.<br />
RMagick didn't crash, but had a bug where it wouldn't produce valid output when compositing TIFF files with clipping paths.</p>
<p>If you don't rely on any obscure C extensions I'd say you'll be fine.</p>
http://stackoverflow.com/questions/81973/issues-with-using-ruby-on-rails-in-64-bit-multiple-platforms/908736#9087360Answer by brianegge for Issues with using ruby (on rails) in 64-bit multiple platformsbrianegge2009-05-26T02:46:57Z2009-05-26T02:46:57Z<p>I run both 32 bit and 64 bit ruby on Solaris 10. Compiling extensions for 64-bit AMD64 can be a little tricky. There exists a <a href="http://www.theeggeadventure.com/wikimedia/index.php/Ruby%5FSybase%5FSolaris" rel="nofollow">Sybase driver, which works but has a couple of bugs</a>. The Oracle driver is a little better. It's not the most common setup, so finding help can be a bit difficult.</p>
<p>I'm running Ruby 1.8.6-p287. Later versions have caused issues. I usually compile 32 bit ruby with gcc and 64 bit with Sun C 5.8.</p>
http://stackoverflow.com/questions/81973/issues-with-using-ruby-on-rails-in-64-bit-multiple-platforms/910352#9103520Answer by rampion for Issues with using ruby (on rails) in 64-bit multiple platformsrampion2009-05-26T12:03:16Z2009-05-26T12:03:16Z<p>I had to use 32-bit MySQL on my 64-bit MacBookPro with rails b/c mysql.gem couldn't handle 64-bit MySQL.</p>
http://stackoverflow.com/questions/81973/issues-with-using-ruby-on-rails-in-64-bit-multiple-platforms/910370#9103700Answer by Friedrich for Issues with using ruby (on rails) in 64-bit multiple platformsFriedrich2009-05-26T12:09:42Z2009-05-26T12:09:42Z<p>I'm sorry I've not experiences with Ruby on anything else but Linux. As epochwolf has written I have also not troubles with Debian, Postgres, Rails, (neither with Apache and passenger nor with Mongrel cluster. So I'm using probably the most widely used platform for Ruby, so I'd expect that there are less problems. I've done my share of AIX administration but to that time ruby was not even known. So I can't tell if Ruby is that stabel on other Unices. However it seems one can get around this in two ways
1) just try it on others systems but Linux (or some BSD (be it Free, Open, or Net)
2) if you encounter problems use a server under Linux and/or some BSD whic is known to work.</p>
<p>Regards
Friedrich</p>