Reputation:
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
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
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