7
votes
5answers
381 views
How do you do performance testing in Ruby webapps?
I've been looking at ways people test their apps in order decide where to do caching or apply some extra engineering effort, and so far httperf and a simple sesslog have been quite helpful.
…
1
vote
1answer
252 views
Connecting to MS SQL Server 2005 from Mac using Ruby, ODBC and FreeTDS
I'm having trouble connecting to a SQL Server 2005 install from this very simple Ruby app:
#!/usr/bin/env ruby
require 'rubygems'
require 'sequel'
Sequel.odbc('dev04')['select top …
0
votes
How best to generate a random string in Ruby
We've been using this on our code:
class String
def self.random(length=10)
('a'..'z').sort_by {rand}[0,length].join
end
end
The maximum length supported …
0
votes
How do you do performance testing in Ruby webapps?
A colleague of mine has also posted some interesting thoughts on this.
…
