The F#.NET Journal just published an article about performance:
"The ability to convert values into legible strings efficiently, a process known as generic pretty printing, has a variety of uses including debugging and serialization. This article takes a look at the characteristics of the built-in pretty printer before considering alternatives including combinators and reflectors with a view to improving performance. Ultimately, a generic solution is proposed that runs 7,600× faster than the built-in F# solution on our test case..."
To read this article and more, subscribe to The F#.NET Journal today!
Learning garbage collection theory
-
I want to learn the theory behind garbage collection. How do i go about it?
I am also a dabbler interested in garbage collection (to the point that I
wro...
1 week ago
2 comments:
I take it Resize.Array slows things down?
@Art: Yes, ResizeArray (an alias for the .NET List collection) is surprisingly inefficient as an extensible array. Filling a raw array is much faster.
Post a Comment