Lohith MV
Lohith MV

Reputation: 3928

how to upload files asynchronously (parallely ) using ruby net-sftp

what is the best way to upload files parallely using sftp ?
using multithreading and multi-process is the only options ?
can we use any of the gems for that ?
I using ruby 1.8.6.

Upvotes: 1

Views: 603

Answers (1)

Stefan
Stefan

Reputation: 114258

Net::SFTP's upload method (without bang) operates asynchronously, i.e. in parallel.

From the docs:

Or, if you have multiple uploads that you want to run in parallel, you can employ the wait method of the returned object:

uploads = %w(file1 file2 file3).map { |f|
  sftp.upload(f, "remote/#{f}")
}
uploads.each { |u| u.wait }

Upvotes: 1

Related Questions