# File lib/redis.rb, line 1765
  def hmget(key, *fields, &blk)
    synchronize do |client|
      client.call [:hmget, key, *fields], &blk
    end
  end