NAME

Tie::LevelDB - A Perl Interface to the LevelDB database

SYNOPSIS

use Tie::LevelDB;

my $db = new Tie::LevelDB("/tmp/testdb");

$db->Put("Google","Don't be evil!");

print $db->Get("Google")."\n";

$db->Delete("Google");

DESCRIPTION

Tie::LevelDB is the Perl Interface for Google NoSQL database called LevelDB. See http://code.google.com/p/leveldb/ for more details.

This version of module covers only a limited functionality of the LevelDB. Only Open, Get, Put and Delete function calls are supported.

Also, SNAPPY compression method is not included. Sorry.

EXPORT

None by default.

SEE ALSO

http://code.google.com/p/leveldb/

AUTHOR

Martin Sarfy, <martin.sarfy@sokordia.cz>

COPYRIGHT AND LICENSE

Copyright (C) 2011 by Sokordia, s.r.o., http://www.sokordia.cz

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