Graciliano Monteiro Passos

Results 119 comments of Graciliano Monteiro Passos

This is important. I will try to add some tests, but I don't have time for that in the next 15 days.

> Can you give an example of how you plan to use this? Did you consider any alternative patterns, such as always storing the key `shelf_static:file`, and storing a separate...

Just sharing some experience with Dart memory management. By default, Dart’s garbage collector (GC) has no upper memory limit. It will keep allocating memory as needed before releasing it or...

@davidmorgan Is it possible to run build_runner with a heap limit, like `--old_gen_heap_size=700`? Note that the process using 1.9G doesn’t necessarily mean there’s a memory leak—it could just be the...

> [@gmpassos](https://github.com/gmpassos) You've probably missed one of the screenshots: build_runner process takes 11GB of RAM, while starting from 500mb Wow, 11G — definitely a memory leak! Sorry, I didn't see...

When I run into issues with the builder—usually after changing dependencies (commonly when switching Git branches)—I typically run: ```bash dart pub upgrade --tighten --unlock-transitive dart run build_runner clean && dart...