in reply to Re^2: Anyone with XS experience willing to create a high performance data type for Perl?
in thread Anyone with XS experience willing to create a high performance data type for Perl?
> Ideally need a balanced tree like Red Black or AVL, the Perl hash takes 4 seconds
Not surprisingly, the Perl hash, at 4 seconds, is a lot faster than the (pure Perl) Tree::RB, at 33 seconds, when running your (unpublished) benchmark.
Is there any functional reason why you can't just use a hash?
Since you mentioned AVL, have you tried AVLTree from CPAN? It uses a XS wrapper around Julienne Walker's AVL Tree C library, so should be a lot faster than Tree::RB.
References
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Anyone with XS experience willing to create a high performance data type for Perl?
by locked_user beautyfulman (Sexton) on Nov 12, 2021 at 01:34 UTC |