Giter Club home page Giter Club logo

matlab-leveldb's Introduction

Matlab LevelDB

Matlab LevelDB wrapper designed for UNIX environment.

The implementation is based on mexplus.

See also matlab-lmdb.

Build

As a prerequisite, LevelDB must be installed. In Linux, install via a package manager, e.g.,

apt-get install libleveldb-dev

Launch Matlab and do the following.

addpath /path/to/matlab-leveldb;
leveldb.make();
leveldb.make('test');

The leveldb.make() function internally calls GNU Make. By default, the build process automatically downloads a leveldb source package from GitHub. Edit Makefile to customize the build process.

Example

% Open and close.
database = leveldb.DB('./db');
clear database;

% Read and write.
database.put('key1', 'value1');
database.put('key2', 'value2');
value1 = database.get('key1');
database.remove('key1');

% Transaction.
batch = leveldb.WriteBatch();
batch.put('key3', 'value3');
batch.put('key4', 'value4');
database.write(batch);

% High-level iterator.
database.each(@(key, value) disp([key, ': ', value]));
count = database.reduce(@(key, value, count) count + 1, 0);

% Low-level iterator.
it = database.iterator();
while it.next()
  fprintf('%s: %s\n', it.key, it.value);
end
clear it;

% Dump.
keys = database.keys();
values = database.values();

matlab-leveldb's People

Contributors

kyamagu avatar

Watchers

James Cloos avatar xwolfs avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.