Created
August 16, 2018 23:42
-
-
Save mallyvai/7516fd0db5b5ebb7245cbade71029289 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'parallel' | |
Benchmark.measure do | |
query = ->(table) do | |
result = ActiveRecord::Base.connection.execute("CHECK TABLE #{table} EXTENDED;").to_a | |
puts result | |
result | |
end | |
result = Parallel.map(ActiveRecord::Base.connection.tables, in_processes: 10) { |table| query.call(table)} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment