Background concurrent copying GC freed - Flutter

前端 未结 5 1137
栀梦
栀梦 2021-02-19 18:56

In my Flutter log I\'m constantly getting this messages(just with some different numbers):

Background concurrent copying GC freed 153040(3MB) AllocSpace objects,         


        
5条回答
  •  执笔经年
    2021-02-19 19:31

    It means your app is using memory and it is being freed by the GC(Garbage Collector).If the memory requirements are not too high you won't see GC firing up a lot of time to free the memory but if it uses too much memory then your app will lag. If there is performance hit then you need to fix it. Test this on a real phone if you can.

提交回复
热议问题