NAME

Tie::Judy - Perl extension for using a Judy array instead of a hash.

SYNOPSIS

use Tie::Judy;

tie %judy, 'Tie::Judy'; # %judy now reads and writes to a Judy array.

keys %judy; # the keys here are in bit-wise SORTED order.

0 + %judy; # returns the number of keys

# method to add lots of entries at once
(tied %judy)->insert( { key => 'value', ... } );
(tied %judy)->insert( key => 'value', ... );

# method to retrieve lots of values at once
(tied %judy)->retrieve( key1, key2, ... )

DESCRIPTION

EXPORT

No exports.

SEE ALSO

The Judy Array project page: http://judy.sourceforge.net/

AUTHOR

Benjamin Holzman, <bholzman@earthlink.net<gt>

COPYRIGHT AND LICENSE

Copyright (C) 2005 by Benjamin Holzman

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available.