Blog

UnQLite.pm - Perl5 binding for UnQLite! It's great DBM implementation!

https://metacpan.org/release/UnQLite https://github.com/tokuhirom/UnQLite

Hi, I shipped UnQLite.pm yesterday. It's UnQLite bindings for Perl5. The module contains unqlite library itself. UnQLite.pm doesn't need any other library dependencies without ANSI C compiler. And so, you can use UnQLite.pm as DBM library.

tie my %hash, 'UnQLite', 'foo.db';
$hash{foo} = 'bar';
say $hash{foo}; # => bar

UnQLite is: * Single database file * Support Terabyte sized databases.

Yes, it's very good DBM.

UnQLite library has more features, but I don't wrap yet. I need contributions! Please send me p-r! (Currently, @charsbar++ sent me big patches!)