I found mysql2 gem. It works fine with ruby 1.9 and utf8 encoding (as opposed to mysql gem).
But I have doubts. Does somebody use this gem in production? What about the performance test? Is it faster than mysql gem? Is it stable?
|
I found mysql2 gem. It works fine with ruby 1.9 and utf8 encoding (as opposed to mysql gem). But I have doubts. Does somebody use this gem in production? What about the performance test? Is it faster than mysql gem? Is it stable? |
|||
|
|
|
The first issue with the Second is that it blocks the entire ruby VM while connecting, sending queries and waiting for responses, and even closing the connection.
I'm only aware of a few people using it in production right now but it is being evaluated at Twitter, WorkingPoint and UserVoice too. I'm also in talks with The ActiveRecord driver should be pretty solid at the moment. All you should need to do is have the gem installed, and change your adapter name in database.yml to If you're interested in using it, give it a try. I'm quick to push fixes if you find any issues ;) |
|||||
|
|
A bit late - but I'm using mysql2 in production on a couple of sites, and have found it very stable since some issues with connections getting closed were resolved a few weeks ago. |
|||
|
|
|
If anyone wants to use the mysql gem instead of the mysql2 gem in Rails 3.0.0 for Windows, I wrote a short article that explains how to tweak the rails app generator. |
|||
|
|
|
FYI, When using mysql2 (0.2.x) with Rails 3.0.11 I had to downgrade my version of RubyGems from 1.8.15 to 1.8.10. Otherwise Passenger barfs... |
|||
|
|
|
Make sure you convert your 'latin1' characters to 'utf8', following the answer here: UTF8 MySQL problems on Rails - encoding issues with utf8_general_ci |
|||
|
|