Git Product home page Git Product logo

exleveldb's Introduction

Exleveldb

Apache Licensed Hex Version

This is an Elixir module wrapping the functions exposed by the Erlang module, eleveldb.

Usage

Also available at hexdocs.pm/exleveldb

open/2

Opens a new datastore in the directory called name. If name does not exist already and no opts list was provided, opts will default to [{:create_if_missing, :true}].

Returns {:ok, ""} where the empty string is a reference to the opened datastore or, on error, {:error, {:type, 'reason for error'}}.

The reference to the database appears to be an empty binary but isn't. This is because db_ref is defined as an opaque type in eleveldb.

The best way to use the reference is to pattern match on the pair returned by open/2 and keep the value for use with functions that take a db_ref.

close/1

Takes a reference as returned by open/2 and closes the specified datastore if open.

Returns :ok or {:error, {:type, 'reason for error'}} on error.

get/3

Retrieves a value in LevelDB by key. Takes a reference as returned by open/2, a key, and an options list.

Returns {:ok, value} when successful or :not_found on failed lookup.

put/4

Puts a single key-value pair into the datastore specified by the reference, db_ref.

Returns :ok if successful or {:error, reference {:type, action}} on error.

delete/3

Deletes the value associated with key in the datastore, db_ref.

Returns :ok when successful or {:error, reference, {:type, action}} on error.

is_empty?/1

Checks whether the datastore specified by db_ref is empty and returns a boolean.

fold/4

Folds over the key-value pairs in the datastore specified in db_ref.

Returns the result of the last call to the anonymous function used in the fold.

The two arguments passed to the anonymous function, fun are a tuple of the key value pair and acc.

fold_keys/4

Folds over the keys of the open datastore specified by db_ref.

Returns the result of the last call to the anonymous function used in the fold.

The two arguments passed to the anonymous function, fun are a key and acc.

map/2

Takes a reference as returned by open/2 and an anonymous function, and maps over the key-value pairs in the datastore.

Returns the results of applying the anonymous function to every key-value pair currently in the datastore.

The argument to the anonymous function is i for the current item, i.e. key-value pair, in the list.

map_keys/2

Takes a reference as returned by open/2 and an anonymous function, and maps over the keys in the datastore.

Returns the results of applying the anonymous function to every key in currently in the datastore.

The argument to the anonymous function is i for the current item, i..e key, in the list.

stream/1

Takes a reference as returned by open/2, and constructs a stream of all key-value pairs in the referenced datastore.

Returns a Stream struct with the datastore's key-value pairs as its enumerable.

When calling Enum.take/2 or similar on the resulting stream, specifying more entries than are in the referenced datastore will not yield an error but simply return a list of all pairs in the datastore.

stream_keys/1

Takes a reference as returned by open/2, and constructs a stream of all the keys in the referenced datastore.

Returns a Stream struct with the datastore's keys as its enum field.

When calling Enum.take/2 or similar on the resulting stream, specifying more entries than are in the referenced datastore will not yield an error but simply return a list of all pairs in the datastore.

destroy/2

Remove a database, which implies that the database folder is deleted. Before calling destroy/2 the database has to be closed with close/1. Returns :ok on success and {:type, 'reason for error'} on error.

repair/2

This function takes the path to the leveldb database and a list of options. The standard recomended option is the empty list []. Before calling repair/2, close the connection to the database with close/1. Returns :ok on success and {:type, 'reason for error'} on error.

write/3

Performs a batch write to the datastore, either deleting or putting key-value pairs.

Takes a reference to an open datastore, a list of tuples (containing atoms for operations and strings for keys and values) designating operations (delete or put) to be done, and a list of options.

Returns :ok on success and {:error, reference, {:type, reason}} on error.

exleveldb's People

Contributors

danieldent avatar masonforest avatar oscarftoro avatar skovsgaard 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.