Skip to content

Commit 3c02d76

Browse files
committed
Updates for improved implementation
1 parent 04e1b48 commit 3c02d76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

powerapps-docs/maker/canvas-apps/functions/function-savedata-loaddata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Storage is encrypted and in a private ___location on the local device, isolated fro
2828

2929
These functions cannot be used inside a browser either when authoring the app in the Studio or running the app in the Web Player. Use a native player on a device to test your app during development.
3030

31-
These functions are limited by the amount of available app memory as they operate on an in-memory collection. Available memory can vary depending on the device and operating system, the memory used by the PowerApps player, and the complexity of the app in terms of screens and controls. if you store more than a few megabytes of data, test your app with expected scenarios on the devices you expect to be used.
31+
These functions are limited by the amount of available app memory as they operate on an in-memory collection. Available memory can vary depending on the device and operating system, the memory used by the PowerApps player, and the complexity of the app in terms of screens and controls. if you store more than a few megabytes of data, test your app with expected scenarios on the devices you expect to be used. You should generally expect to have between 30 and 70 megabytes of available memory.
3232

3333
## Syntax
3434
**SaveData**( *Collection*, *Name* )<br>**LoadData**( *Collection*, *Name* [, *IgnoreNonexistentFile* ])

powerapps-docs/maker/canvas-apps/offline-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ One of the most common scenarios you face as a mobile-app developer is enabling
2727

2828
LoadData and SaveData are a simple mechanism to store small amounts of data on a local device. Using these function you can add simple offline capabilities to your app.
2929

30-
These functions are limited by the amount of available app memory as they operate on an in-memory collection. Available memory can vary depending on the device and operating system, the memory used by the PowerApps player, and the complexity of the app in terms of screens and controls. if you store more than a few megabytes of data, test your app with expected scenarios on the devices you expect to be used.
30+
These functions are limited by the amount of available app memory as they operate on an in-memory collection. Available memory can vary depending on the device and operating system, the memory used by the PowerApps player, and the complexity of the app in terms of screens and controls. if you store more than a few megabytes of data, test your app with expected scenarios on the devices you expect to be used. You should generally expect to have between 30 and 70 megabytes of available memory.
3131

3232
The functions also don't automatically resolve merge conflicts when a device returns to connectivity from offline – configuration on what data is saved and how to handle reconnection is up to the maker when writing expressions.
3333

0 commit comments

Comments
 (0)