Prune devel/py-EnthoughtBase
[dports.git] / devel / p5-Clone-Fast / pkg-descr
1 Essentially, this module is a very optimized version of Clone::More.
2 By taking advantage of one of Clone::More's 'OPTIMIZATION_HACKS' as
3 well as removing all the Pure Perl from the More.pm, I was able to
4 gain a lot of speed out of the module. Essentially, though, the core
5 of the module is exactly as that of Clone::More.
6
7 You will see that by using Benchmark::cmpthese, I ran a simple
8 comparison between Storable::dclone, Clone::More::clone, and
9 Clone::Fast::clone. You will (should) begin to see the reason why I
10 loaded this module along side of Clone::More.
11
12                    Rate    Storable Clone::More Clone::Fast
13     Storable     7552/s          --        -39%        -59%
14     Clone::More 12400/s         64%          --        -33%
15     Clone::Fast 18442/s        144%         49%          --
16
17 For more information relative to the DESCRIPTION of this module, I
18 recommend peeking into the POD written for Clone::More (I took more
19 time with it ;) )
20
21 WWW: http://search.cpan.org/dist/Clone-Fast/