GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Tie::LevelDB(3) User Contributed Perl Documentation Tie::LevelDB(3)

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

  use Tie::LevelDB;

  tie my %hash, 'Tie::LevelDB', "/tmp/testdb";
  # Use the %hash array
  untie %hash;

  -- OR --

  use Tie::LevelDB; 

  my $db = new Tie::LevelDB::DB("/tmp/testdb");
  $db->Put("Google","Don't be evil!");
  print $db->Get("Google")."\n";
  $db->Delete("Google");

  my $batch = new Tie::LevelDB::WriteBatch;
  $batch->Delete("Google");
  $batch->Put("Microsoft","Where Do you Want to Go Today?");
  $db->Write($batch);

  my $it = $db->NewIterator;
  for($it->SeekToFirst;$it->Valid;$it->Next) {
     print $it->key.": ".$it->value."\n";
  }

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

Interface is implemented both as a reflection of an original LevelDB C++ API and a Perl-ish TIEHASH mechanism.

None by default.

LevelDB does not support storing of "undef" values. If "undef" is stored, the key is "deleted" instead.

Perl support for Options specification is not covered.

To use SNAPPY compression method, install it from <http://code.google.com/p/snappy> first and then re-install this module.

LevelDB sources (version 2011-07-29) are bundled with this packages.

<http://code.google.com/p/leveldb/>, DB_File(3), tie.

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

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.

2011-11-14 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.