# File lib/redis.rb, line 66
  def select(db)
    synchronize do |client|
      client.db = db
      client.call [:select, db]
    end
  end