Home:ALL Converter>How much maximum memory in a separate isolate in dart

How much maximum memory in a separate isolate in dart

Ask Time:2019-01-03T11:32:51         Author:Khánh Vũ Đỗ

Json Formatter

I am learning about isolate in dart/flutter, in almost documents say that isolates don't share memory each other, but it not say how much maximum memory in an isolate. Is it limited by App maximum memory or each isolate have a separate memory space and doesn't depend on total initial memory allocated of Application?

Thank for any help.

Update

I found information at Dart Glossary: "Dart supports concurrent execution by way of isolates, which you can think of as processes without the overhead. Each isolate has its own memory and code, which can’t be affected by any other isolate"

Author:Khánh Vũ Đỗ,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/54015991/how-much-maximum-memory-in-a-separate-isolate-in-dart
yy