Perl5.13.4 がでてますね

http://search.cpan.org/~flora/perl-5.13.4/pod/perl5134delta.pod
順調にすすんでいてすばらしいですね。

Make string appending 100 times faster
When doing a lot of string appending, perl could end up allocating a lot more memory than needed in a very inefficient way, if perl was configured to use the system's malloc implementation instead of its own.

sv_grow, which is what's being used to allocate more memory if necessary when appending to a string, has now been taught how to round up the memory it requests to a certain geometric progression, making it much faster on certain platforms and configurations. On Win32, it's now about 100 times faster.

これは、T::MT とかつかってるときにきいてくるんじゃないかなあ。

あと、Creating unary functions with prototypes ってのが気になるけど、これはなんの変更だかさっぱりわからない。

あと srand() now returns the seed というのが、すごい地味だけど個人的には「え、いままでそうなってなかったの」というかんじだった。5.13.3 以前だと srand() は常に 1 を return しますね。

Published: 2010-08-22(Sun) 23:44