instance method
upload_with_multipart
Ruby on Rails 7.1.6
Since v6.1.7.10 PrivateSignature
upload_with_multipart(key, io, content_type: nil, content_disposition: nil, custom_metadata: {})
No documentation comment.
Parameters
-
keyreq -
ioreq -
content_typekey = nil -
content_dispositionkey = nil -
custom_metadatakey = {}
Source
# File activestorage/lib/active_storage/service/s3_service.rb, line 139
def upload_with_multipart(key, io, content_type: nil, content_disposition: nil, custom_metadata: {})
part_size = [ io.size.fdiv(MAXIMUM_UPLOAD_PARTS_COUNT).ceil, MINIMUM_UPLOAD_PART_SIZE ].max
object_for(key).upload_stream(content_type: content_type, content_disposition: content_disposition, part_size: part_size, metadata: custom_metadata, **upload_options) do |out|
IO.copy_stream(io, out)
end
end
Defined in activestorage/lib/active_storage/service/s3_service.rb line 139
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveStorage::Service::S3Service