minio-cpp
minio-cpp copied to clipboard
MinIO C++ Client SDK for Amazon S3 Compatible Cloud Storage
Added file opening mode to address issue #145.
I cannot find the function ListParts from minio-cpp sdk。
https://github.com/xmake-io/xmake-repo/actions/runs/10529071455/job/29176023384 ``` /Users/runner/.xmake/cache/packages/2408/m/minio-cpp/v0.3.0/source/src/utils.cc:106:19: error: use of undeclared identifier 'getuid' return getpwuid(getuid())->pw_dir; ``` I make a patch, it work fine on ci. ```diff diff --git a/src/utils.cc b/src/utils.cc index 05cb8e2..6f16a66 100644 ---...
Hi, I would like to know if its possible to set the content disposition headers when calling GetPresignedObjectUrl? My need is because I store the objects with unique IDs but...
http.cc line 447: if (select(maxfd + 1, &fdread, &fdwrite, &fdexcep, nullptr) < 0) "nullptr " Should use timeout: struct timeval timeout; timeout.tv_sec = xxx; timeout.tv_usec = xxx; select(maxfd+1, &fdread, &fdwrite,...
Is locking needed to use a client object safely from multiple threads?
would like to have the ability to set a timeout value for the http request.
There are several issues introduced by https://github.com/minio/minio-cpp/pull/29 When running an application that is rarely restarted, that links to this sdk I encountered hangs inside of the select() call inside of...
In Windows 10, when the server is not online, calling the StatObject interface, there is no response, and the code is stuck at the following line, in line 442 of...