Skip to content

Commit deb96d5

Browse files
committed
Update docs for max_heap_size
1 parent 3996424 commit deb96d5

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

examples/max_heap_size.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fn main() -> Result<(), Error> {
1313
);
1414

1515
let mut runtime = Runtime::new(RuntimeOptions {
16-
max_heap_size: Some(1 * 1024 * 1024),
16+
max_heap_size: Some(5 * 1024 * 1024),
1717
..Default::default()
1818
})?;
1919

src/inner_runtime.rs

+5
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@ pub struct RuntimeOptions {
126126
pub timeout: Duration,
127127

128128
/// Optional maximum heap size for the runtime
129+
///
130+
/// If the heap size is exceeded, the runtime will return a `HeapExhausted` error.
131+
///
132+
/// **WARNING** this is not a minimum heap size; the underlying V8 isolate will still crash if this number is too small for startup
133+
/// (~5mb with default features)
129134
pub max_heap_size: Option<usize>,
130135

131136
/// Optional cache provider for the module loader

0 commit comments

Comments
 (0)