LevelDOWN
READ THIS FIRST
LevelDOWN is currently undergoing API development to prepare it for general use. Version 0.0.0 represents the API as it has been used internally within LevelUP but this API is not ideal for public consumption.
If you wish to contribute towards improving this API, please submit your suggestions in the form of a pull request against this README.md file, highlighting changes you believe ought to be made; discussion will then ensue!
LevelDOWN is stable for general use as long as you are careful what arguments you provide (LevelUP sanitises most inputs prior to feeing them to the binding). You also need to be aware of the ongoing work on the API. Each time a breaking change is made to the API, the Major version will be incremented (i.e. where semver specifies Major.Minor.Patch), so be careful with your npm dependencies!
In general, the current API is fairly brittle and each method must be fed the right number and type of arguments; failing to adhere to the requirements of each method call may result in process death. Making the API more resilient will be a top priority.
The other major priority for API-change will be to make it as easy and natural to use without unnecessary fluff (the fluff can go in LevelUP if it's really needed). The API will be as minimal as possible while still providing enough async access to LevelDB for efficient use.
API
leveldown.createDatabase()
createDatabase()
returns a new LevelDOWN instance.
leveldown.createIterator(database, options)
createIterator()
returns a new Iterator instance for the given database
instance. Both arguments are required.
options
The options
object may contain:
-
'start'
: the key you wish to start the read at. By default it will start at the beginning of the store. Note that the start doesn't have to be an actual key that exists, LevelDB will simply find the next key, greater than the key you provide.
-
'end'
: the key you wish to end the read on. By default it will continue until the end of the store. Again, the end doesn't have to be an actual key as an (inclusive) <=
-type operation is performed to detect the end. You can also use the destroy()
method instead of supplying an 'end'
parameter to achieve the same effect.
-
'reverse'
(boolean, default: false
): a boolean, set to true if you want the stream to go in reverse order. Beware that due to the way LevelDB works, a reverse seek will be slower than a forward seek.
-
'keys'
(boolean, default: true
): whether the 'data'
event should contain keys. If set to true
and 'values'
set to false
then 'data'
events will simply be keys, rather than objects with a 'key'
property. Used internally by the keyStream()
method.
-
'values'
(boolean, default: true
): whether the 'data'
event should contain values. If set to true
and 'keys'
set to false
then 'data'
events will simply be values, rather than objects with a 'value'
property. Used internally by the valueStream()
method.
-
'limit'
(number, default: -1
): limit the number of results collected by this stream. This number represents a maximum number of results and may not be reached if you get to the end of the store or your 'end'
value first. A value of -1
means there is no limit.
-
'fillCache'
(boolean, default: false
): wheather LevelDB's LRU-cache should be filled with data read.
-
'keyAsBuffer'
(boolean, default: true
): Used to determine whether to return the key
of each entry as a String
or a Node.js Buffer
object. Note that converting from a Buffer
to a String
incurs a cost so if you need a String
(and the value
can legitimately become a UFT8 string) then you should fetch it as one.
-
'valueAsBuffer'
(boolean, default: true
): Used to determine whether to return the value
of each entry as a String
or a Node.js Buffer
object.
leveldown#open(location, options, callback)
open()
is an instance method on an existing database object. location
is a String pointing to the LevelDB location to be opened.
options
The options
object may contain:
-
'createIfMissing'
(boolean, default: true
): If true
, will initialise an empty database at the specified location if one doesn't already exist. If false
and a database doesn't exist you will receive an error in your open()
callback and your database won't open.
-
'errorIfExists'
(boolean, default: false
): If true
, you will receive an error in your open()
callback if the database exists at the specified location.
-
'compression'
(boolean, default: true
): If true
, all compressible data will be run through the Snappy compression algorithm before being stored. Snappy is very fast and shouldn't gain much speed by disabling so leave this on unless you have good reason to turn it off.
-
'cacheSize'
(number, default: 8 * 1024 * 1024
): The size (in bytes) of the in-memory LRU cache with frequently used uncompressed block contents.
The callback
function will be called with no arguments when the database has been successfully opened, or with a single error
argument if the open operation failed for any reason.
All 3 arguments are required.
leveldown#close(callback)
close()
is an instance method on an existing database object. The underlying LevelDB database will be closed and the callback
function will be called with no arguments if the operation is successful or with a single error
argument if the operation failed for any reason.
The callback
argument is required.
leveldown#put(key, value, options, callback)
put()
is an instance method on an existing database object, used to store new entries, or overwrite existing entries in the LevelDB store.
The key
and value
objects may either be String
s or Node.js Buffer
objects and cannot be undefined
or null
.
options
The only property currently available on the options
object is 'sync'
(boolean, default: false
). If you provide a 'sync'
value of true
in your options
object, LevelDB will perform a synchronous write of the data; although the operation will be asynchronous as far as Node is concerned. Normally, LevelDB passes the data to the operating system for writing and returns immediately, however a synchronous write will use fsync()
or equivalent so your callback won't be triggered until the data is actually on disk. Synchronous filesystem writes are significantly slower than asynchronous writes but if you want to be absolutely sure that the data is flushed then you can use 'sync': true
.
The callback
function will be called with no arguments if the operation is successful or with a single error
argument if the operation failed for any reason.
All 4 arguments are required.
leveldown#get(key, options, callback)
get()
is an instance method on an existing database object, used to fetch individual entries from the LevelDB store.
The key
object may either be a String
or a Node.js Buffer
object and cannot be undefined
or null
.
options
The options
object may contain:
-
'fillCache'
(boolean, default: true
): LevelDB will by default fill the in-memory LRU Cache with data from a call to get. Disabling this is done by setting fillCache
to false
.
-
'asBuffer'
(boolean, default: true
): Used to determine whether to return the value
of the entry as a String
or a Node.js Buffer
object. Note that converting from a Buffer
to a String
incurs a cost so if you need a String
(and the value
can legitimately become a UFT8 string) then you should fetch it as one.
The callback
function will be called with no arguments if the operation is successful or with a single error
argument if the operation failed for any reason.
All 3 arguments are required.
leveldown#del(key, options, callback)
del()
is an instance method on an existing database object, used to delete entries from the LevelDB store.
The key
object may either be a String
or a Node.js Buffer
object and cannot be undefined
or null
.
options
The only property currently available on the options
object is 'sync'
(boolean, default: false
). See leveldown#put() for details about this option.
The callback
function will be called with no arguments if the operation is successful or with a single error
argument if the operation failed for any reason.
All 3 arguments are required.
leveldown#batch(operations, options, callback)
batch()
is an instance method on an existing database object. Used for very fast bulk-write operations (both put and delete). The operations
argument should contain a list of operations to be executed sequentially. Each operation is contained in an object having the following properties: type
, key
, value
, where the type is either 'put'
or 'del'
. In the case of 'del'
the 'value'
property is ignored. See LevelUP for full documentation on how this works in practice.
options
The only property currently available on the options
object is 'sync'
(boolean, default: false
). See leveldown#put() for details about this option.
The callback
function will be called with no arguments if the operation is successful or with a single error
argument if the operation failed for any reason.
All 3 arguments are required.
Callback
leveldown#approximateSize(start, end, callback)
approximateSize()
is an instance method on an existing database object. Used to get the approximate number of bytes of file system space used by the range [start..end)
. The result may not include recently written data.
The start
and end
parameters may be either String
or Node.js Buffer
objects representing keys in the LevelDB store.
The callback
function will be called with no arguments if the operation is successful or with a single error
argument if the operation failed for any reason.
All 3 arguments are required.
iterator#next(endCallback, nextCallback)
next()
is an instance method on an existing iterator object, used to increment the underlying LevelDB iterator and return the entry at that location.
The endCallback
function will be called with no arguments in any of the following situations:
- the iterator comes to the end of the store
- the
end
key has been reached; or - the
limit
has been reached
Otherwise, nextCallback
will be called with the following 3 arguments:
null
key
- either a String
or a Node.js Buffer
object depending on the keyAsBuffer
argument when the createIterator()
was called.value
- either a String
or a Node.js Buffer
object depending on the valueAsBuffer
argument when the createIterator()
was called.
Both endCallback
and nextCallback
arguments are required.
iterator#end(callback)
end()
is an instance method on an existing iterator object. The underlying LevelDB iterator will be deleted and the callback
function will be called with no arguments if the operation is successful or with a single error
argument if the operation failed for any reason.
The callback
argument is required.
Contributing
LevelDOWN is an OPEN Open Source Project. This means that:
Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.
See the CONTRIBUTING.md file for more details.
Contributors
LevelDOWN is only possible due to the excellent work of the following contributors:
Licence & copyright
Copyright (c) 2012-2013 LevelDOWN contributors (listed above).
LevelDOWN is licensed under an MIT +no-false-attribs license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.
LevelDOWN builds on the excellent work of the LevelDB and Snappy teams from Google and additional contributors. LevelDB and Snappy are both issued under the New BSD Licence.