V compile time memory management:Running the Ved-editor on 8MB file with 0 leaks
1–10 of 23 posts
Re: V compile time memory management:Running the Ved-editor on 8MB file with 0 leaks
#2Re: V compile time memory management:Running the Ved-editor on 8MB file with 0 leaks
#3i first heard of him via Volt app. and then he went on to create vlang which looks very good from what i've seen
Re: V compile time memory management:Running the Ved-editor on 8MB file with 0 leaks
#4it's very impressive to know this is one person's work. i first heard of him via Volt app. and then he went on to create vlang which looks very good from what i've seen
I no longer work alone though, we have a large team, and I think only about 50% of code is written by me at this point.
Although the autofree engine this video is about is fully my work.
Re: V compile time memory management:Running the Ved-editor on 8MB file with 0 leaks
#5I guess community and adoption will make it or break it
Re: V compile time memory management:Running the Ved-editor on 8MB file with 0 leaks
#6So this is basically a go-like language which can be compiled into C (which would explain fast compilation small size)? Neat! I guess community and adoption will make it or break it
Re: V compile time memory management:Running the Ved-editor on 8MB file with 0 leaks
#7What is the trade off here with auto free ? Is it still possible to have memory leaks in some scenarios ?
What about concurrency or multi threaded situations ?
Re: V compile time memory management:Running the Ved-editor on 8MB file with 0 leaks
#8Very happy to see vlang make steady progress. Been following this language since it was initially posted on HN. What is the trade off here with auto free ? Is it still possible to have memory leaks in some scenarios ? What about concurrency or multi threaded situations ?
For mutable objects shared across threads, reference counting will be used.
Re: V compile time memory management:Running the Ved-editor on 8MB file with 0 leaks
#9Re: V compile time memory management:Running the Ved-editor on 8MB file with 0 leaks
#10Nice work. V is coming along nicely. How would you say the autofree engine works, is it RAII?