Initial commit
This commit is contained in:
21
script/server_load.rb
Executable file
21
script/server_load.rb
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env ruby
|
||||
require_relative '../lib/cartodb/threads_machine'
|
||||
require_relative '../lib/cartodb/scripts/server_load'
|
||||
|
||||
class ServerLoad < ThreadsMachine
|
||||
|
||||
def execute
|
||||
|
||||
MAX_THREADS.times do
|
||||
queue.enq(ServerLoadScript)
|
||||
end
|
||||
|
||||
async do |load_script|
|
||||
load_script.new
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
ServerLoad.new.execute
|
||||
Reference in New Issue
Block a user