How to create a cloud storage application in Qt ?
-
wrote on 2 Jul 2022, 12:39 last edited by deleted569 7 Feb 2022, 13:05
Hi, I am planning to create a simple cloud storage application in qt to store documents, pictures, mails and videos. Can you provide me the best qt apis/suggestions (or both) to create a simple cloud storage application from scratch?
-
Hi,
Before anything else: what storage backend are you going to use ? Cloud storage is way too vague a concept to be used like that.
-
Hi,
Before anything else: what storage backend are you going to use ? Cloud storage is way too vague a concept to be used like that.
wrote on 2 Jul 2022, 15:13 last edited by deleted569 7 Feb 2022, 15:14I think openstack backend. I am not sure which backend is the best to use with qt.
-
OpenStack is the infrastructure. For the storage service it's up to you to select the one that fits your needs. You should likely go with something like Minio or CEPH which provides an S3 compatible service. You can implement the protocol using QNetworkAccessManager.
-
wrote on 3 Jul 2022, 03:26 last edited by
How do I import ceph or minio inside my app so that it can store files?
-
You don't import them. They are server side components.
That said a simple search for CEPH S3 C++ library returns this.
And the same query for Minio, returns their client library.
-
Hi, I am planning to create a simple cloud storage application in qt to store documents, pictures, mails and videos. Can you provide me the best qt apis/suggestions (or both) to create a simple cloud storage application from scratch?
wrote on 4 Jul 2022, 06:52 last edited by@1km7kt1hi said in How to create a cloud storage application in Qt ?:
I am planning to create a simple cloud storage application
Are you planning to write a server application or a client application?
-
@1km7kt1hi said in How to create a cloud storage application in Qt ?:
I am planning to create a simple cloud storage application
Are you planning to write a server application or a client application?
wrote on 25 Jul 2022, 09:54 last edited by@SimonSchroeder said in How to create a cloud storage application in Qt ?:
Are you planning to write a server application or a client application?
Client application