-
This seems to overlap with what minio mc does . mc has local , minio, s3 and google storage support ? Just wondering as I’m in the same situation of needing to interact with them all . |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
As far as I know, the Our need was to be able to write code once for any underlying filesystem based largely on where our apps were deployed (we are multi-cloud). |
Beta Was this translation helpful? Give feedback.
As far as I know, the
minio
client only works GCS because of the it's S3 compatibility mode.vfs
has taken the philosophy of providing an interface that can interact with any(with an appropriate adapter) filesystem in POSIX-like manner. Currently we support the following filesystems:local
in-memory
S3
GCS
Azure Blob
SFTP
FTP/FTPS/FTPES
Our need was to be able to write code once for any underlying filesystem based largely on where our apps were deployed (we are multi-cloud).