user5138257
user5138257

Reputation:

Is it possible to use Parse SDK and store database on my own server?

I want to store my app's databases on my own server.
Right now, I'm storing it on parse.com server.

Is there any way to move the databases to my own server and still get access to it using parse.com SDK?

Upvotes: 2

Views: 136

Answers (2)

SanitLee
SanitLee

Reputation: 1253

No Parse SDK will not allow that. For one obvious example, you cannot configure location for PFFile to be stored. You may consider opting for storing references to URLs rather than PFFiles in your Parse objects. However, I think there's still some issue with Parse SDK not allowing you to download multiple resources with a single method call.

Upvotes: 1

picciano
picciano

Reputation: 22701

No.

You could build something similar, but the Parse SDK allows for local device storage or storage within the Parse.com cloud only.

Upvotes: 1

Related Questions