When will the autofree be production ready? #16553
-
I'm curious what V's current memory management is,but the doc describe it by a very short way.
So,is that ~90-100% objects will free by the autofree engine if it enable?But now this engine is not enable by default. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
V does use gc by default now. You can disable it if you like, by using |
Beta Was this translation helpful? Give feedback.
-
How should I disable gc and use autofree
|
Beta Was this translation helpful? Give feedback.
V does use gc by default now. You can disable it if you like, by using
-gc none
, or you can combine it with-autofree
to test.-autofree
will be ready before the 1.0 release, but there are no dates.