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