Nerian
Nerian

Reputation: 16177

Using Ruby 1.9.2 in development and REE in production

Is there any incompatibilities between Ruby 1.9.2 and REE that I should be aware of?

I will be deploying a Rails 3 app and I read that REE uses a lot less resources. Any drawbacks?

Deployment machine: 16 GB disk 256 MB RAM

Using Phusion Passenger and NGinx Ruby on Rails 3.0.3

Upvotes: 0

Views: 802

Answers (2)

Cristian Pereyra
Cristian Pereyra

Reputation: 41

You should try with rvm, and test how it works with both environments.

Give it a try, it should take less than 15 minutes and you'll be sure you have no problem.

Upvotes: 1

Kevin
Kevin

Reputation: 1855

I agree with @Adam. REE uses ruby 1.8 syntax. Switching between ruby 1.8 and 1.9 syntax is headache job. Both Ruby 1.9.2 and REE are good implementations of ruby. In general, Ruby 1.9.2 runs faster and REE uses less memory. But I think catching up with the trend is good for further development, so I prefer to ruby 1.9.2

Upvotes: 1

Related Questions