ClientConfigurationUseSingleThreadReadInResumableUpload Property |
When uploading a file with resumable upload, the default behavior is to read the source file in multiple-threading.
But in old HDD, single thread read may be faster. And when the read speed is the bottleneck, try to change this parameter to compare the result.
Namespace: Aliyun.OSS.CommonAssembly: Aliyun.OSS (in Aliyun.OSS.dll) Version: 2.8.0.0 (2.8.0)
Syntax public bool UseSingleThreadReadInResumableUpload { get; set; }
Public Property UseSingleThreadReadInResumableUpload As Boolean
Get
Set
public:
property bool UseSingleThreadReadInResumableUpload {
bool get ();
void set (bool value);
}
member UseSingleThreadReadInResumableUpload : bool with get, set
Property Value
Type:
Booleantrue if use single thread read in resumable upload; otherwise,
false.
See Also