Skip to content

Commit

Permalink
[WASM] Update features doc (dotnet#105068)
Browse files Browse the repository at this point in the history
Update src/mono/wasm/features.md

Co-authored-by: Marek Fišera <mara@neptuo.com>
  • Loading branch information
mkhamoyan and maraf authored Jul 22, 2024
1 parent db32911 commit f304e99
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/mono/wasm/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,15 @@ WebSocket support in NodeJS hosts requires the `ws` npm package.
### Initial Memory Size
By default the .NET runtime will reserve a small amount of memory at startup, and as your application allocates more objects the runtime will attempt to "grow" this memory. This growth operation takes time and could fail if your device's memory is limited, which would result in an application error or "tab crash".

To reduce startup time and increase the odds that your application will work on devices with limited memory, you can set an initial size for the memory allocation, based on an estimate of how much memory your application typically uses. To set an initial memory size, include an MSBuild property like `<EmccInitialHeapSize>16777216</EmccInitialHeapSize>`, where you have changed the number of bytes to an appropriate value for your application. This value must be a multiple of 16384. The default value is `2,147,483,648 bytes`, which may be too large and result in the app failing to start, because the browser refuses to grant it.
To reduce startup time and increase the odds that your application will work on devices with limited memory, you can set an initial size for the memory allocation, based on an estimate of how much memory your application typically uses. To set an initial memory size, include an MSBuild property like `<EmccInitialHeapSize>16777216</EmccInitialHeapSize>`, where you have changed the number of bytes to an appropriate value for your application. This value must be a multiple of 16384.

This property requires the [wasm-tools workload](#wasm-tools-workload) to be installed.

### Maximum Memory Size
When building an app targeting mobile device browsers, especially Safari on iOS, decreasing the maximum memory for the app may be required.

The default value is `2,147,483,648 bytes`, which may be too large and result in the app failing to start, because the browser refuses to grant it.
To set the maximum memory size, include the MSBuild property like `<EmccMaximumHeapSize>268435456<EmccMaximumHeapSize>`.

This property requires the [wasm-tools workload](#wasm-tools-workload) to be installed.

Expand Down

0 comments on commit f304e99

Please sign in to comment.