Parse Local Datastore Size Limitations

Is there a limit to the number of objects that can be bound to the local data store? Or does it depend on the size of the device's hard drive?

Assuming the local parsing data store can scan a maximum of 30MB of text data. Is there most of the performance to find it all? those. Is Parse designed for this kind of value?

+3


source to share


2 answers


I couldn't find anything about max local storage.

The only thing you have to keep in mind is that the request limit (1000) still applies when it comes to local data storage.

We have several scenarios about performance:



  • fast device / fast network
  • fast device / slow network.
  • slow device / fast network.
  • slow device / slow network

Thus, depending on your scenario and the amount of data that you would like (or not) for data binding.

0


source


Would you say that disk access should be faster than network access as a general rule of thumb? If so, it means that the local data store should (generally) improve the performance of all queries (all other things being equal).



0


source







All Articles