2

我们使用 Ruby 来检查域的可用性,但代码运行缓慢。我们在请求之间缓存 Whois 对象会提高性能,但 SO 上的其他帖子表明这只会略微提高性能,如果有的话。

代码是如此简单。我们不确定是否可以进行其他改进,或者我们是否因为 Whois 对象而陷入了缓慢的查找。

bulk_check方法接受要查找的域数组。其他一切都是不言自明的。

我们在 Rails 3 上。

有什么建议么?

谢谢!

def bulk_check
    domains = params[:domains] || '[]'
    callback = params[:callback] || ''      
    results = []
    threads = []

    # String -> Array
    domains = ActiveSupport::JSON.decode domains

    # Iterate over each domain and spawn new thread to check domain status
    domains.each do |d|
      threads << Thread.new(d) { |my_domain|
        Thread.current['domain'] = my_domain
        Thread.current['status'] = get_domain_status my_domain
      }
    end

    # Wait for threads to finish and update results array
    threads.each do |t| 
        t.join
        results.push [ t['domain'], t['status'] ]
    end

    # Render results
    respond_to do |type|
        type.json { render :json => { :results => results }.to_json, :callback => callback }
    end
end


def get_domain_status domain
    begin
        # Create Whois object
        whois = Whois::Client.new

        # Query Whois for domain data
        result = whois.query domain

        # Prep JSON response
        status = result.available? ? 'available' : 'taken'
    rescue Exception => e
        puts "Exception in parsing '#{domain}' status: #{e.message}"
        status = 'error'
    end

    # Return status
    return status
end
4

1 回答 1

0

由于这并不是真正的 CPU 密集型操作,而是“网络密集型”——考虑使用 Ruby 线程或纤程同时检查多个域。

例如,赛璐珞 gem 让它变得简单易用:https ://github.com/celluoid/celluoid/

于 2012-09-27T23:01:29.180 回答