npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

yotta

v0.1.10

Published

Yotta DB is a local file based key value database, written in Node.js.

Downloads

79

Readme

yotta

Yotta DB is a local file based key value database, written in Node.js.

Installation

Module

npm install yotta

Shell and CLI

npm install yotta -g

Usage

Yotta Shell

Create a new DB

$ yotta mydb
mydb>

or

$ yotta
> open mydb
mydb>

Exit Yotta DB shell

mydb> exit
> $

Show all Yotta DB shell commands by hitting tab

$ yotta
>
close               exit                find                findFromValue
findKeys            findKeysFromValue   findfromvalue       findkeys
findkeysfromvalue   get                 open                put
quit                rebuildValueIndex   rebuildvalueindex   remove
stats               test                use                 vacuum
version

>

Put some keys

mydb> put a 1
mydb> put b 2
mydb> put c 3
mydb> put d 4
mydb> put e 5

Get a value from a key

mydb> get d
4

Remove a key

mydb> remove c
mydb> get c
undefined

Find keys

mydb> findkeys "key==='a' || key==='d'"
[ 'a', 'd' ]

Find all keys

mydb> findkeys true
[ 'a', 'b', 'd', 'e' ]

Find key value pairs

mydb> find "key==='a' || key==='d'"
{ a: '1', d: '4' }

Find all key value pairs

mydb> find true
{ a: '1', b: '2', d: '4', e: '5' }

findkeysfromvalue

$ yotta
> use a
a> put a 1
a> put b 2
a> rebuildvalueindex value 'function(value){return value;}
a> put c 3
a> findkeysfromvalue value "value==='3'"
[ 'c' ]
a> findkeysfromvalue value "value>=2"
[ 'b', 'c' ]
a>

findfromvalue

$ yotta
> use a
a> put a 1
a> put b 2
a> rebuildvalueindex value 'function(value){return value;}
a> put c 3
a> findfromvalue value "value>=2"
{ b: '2', c: '3' }
a>

Vacuum DB

mydb> vacuum

Show version

mydb> version
0.1.9

Yotta CLI

Put some keys

$ yotta mydb put a 1
$ yotta mydb put b 2
$ yotta mydb put c 3
$ yotta mydb put d 4
$ yotta mydb put e 5

Get a value from a key

$ yotta mydb get d
4

Remove a key

$ yotta mydb remove c
$ yotta mydb get c
$

Find keys

$ yotta mydb findkeys "key==='a' || key==='d'"
[ 'a', 'd' ]

Find all keys

$ yotta mydb findkeys true
[ 'a', 'b', 'd', 'e' ]

Find key value pairs

$ yotta mydb find "key==='a' || key==='d'"
{ a: '1', d: '4' }

Find all key value pairs

$ yotta mydb find true
{ a: '1', b: '2', d: '4', e: '5' }

Vacuum DB

$ yotta mydb vacuum
$

Show version

$ yotta mydb version
0.1.9

Module

Synchronously

var Yotta = require('yotta').Yotta;

// specify data file location
var yottadb = new Yotta('./testdb');

yottadb.open();

yottadb.put("key0", "value0");
yottadb.put("key1", "value1");
yottadb.put("key2", "value2");
var v = yottadb.get("key0");
console.log(v); //value0

//find keys
var keysFound = yottadb.findKeys(function(key, index, keys) {
	return key === 'key0' || key === 'key2';
});
console.log(keysFound); //[ 'key0', 'key2' ]

//find
var found = yottadb.find(function(key, index, keys) {
	return key === 'key0' || key === 'key2';
});
console.log(found); //{ key0: 'value0', key2: 'value2' }

// remove
yottadb.remove('key0');

yottadb.close();
// or yottadb.close(true) to vacuum

Asynchronously

var Yotta = require('yotta').Yotta;

// specify data file location
var yottadb = new Yotta('./testdb');

yottadb.open();

yottadb.put("key0a", "value0a", function() {
	yottadb.get("key0a", function(err, v) {
		console.log(v); // value0a
	});
});

//find keys
var keysFound = yottadb.findKeys(function(key, index, keys) {
	return key === 'key0' || key === 'key2';
}, function(err, keysFound) {
	console.log(keysFound); //[ 'key0', 'key2' ]
});

//find
var found = yottadb.find(function(key, index, keys) {
	return key === 'key0' || key === 'key2';
}, function(err, found) {
	console.log(found); //{ key0: 'value0', key2: 'value2' }
});

// remove
//yottadb.remove('key0a', function (err) {
//    console.log('removed.');
//});

setTimeout(function(){
	yottadb.close();
	// or yottadb.close(true) to vacuum
}, 1000);

More APIs

vacuum

Each remove operation causes fragments in the data file, vacuum will help to compact the data file.

// synchronously
yottadb.vacuum();

// or asynchronously
yottadb.vacuum(function(){
	console.log('vacuum done');
});

stats

Get the hole size information from the data file.

var statsInfo = yottadb.stats();
console.log(statsInfo);
// { holdSize: 630, dataFileSize: 672, holdRatio: 0.9375 }

Now it looks to be a perfect chance to do a vacuum.

yottadb.vacuum(function(){
	console.log(yottadb.stats());
});
// { holdSize: 0, dataFileSize: 42, holdRatio: 0 }

rebuildValueIndex

Yotta DB does not assume what values are put in the database. A value index needs to be built before you can search against the values. rebuildValueIndex will help to build a value index.

var indexPath = 'raw';
var test = function(value){
    return value;
};
yottadb.rebuildValueIndex(indexPath, test);

This will create a value index file raw.idx. The original value will be indexed. Of course you can also create a more sophisticated function index by giving the test function more logic.

findKeysFromValue

findKeysFromValue helps to find an array of keys against the values in the database, according to the search logic defined by the test function.

var indexPath = 'raw';
var test = function(value){
    return value === 1;
};
var cb = function(err, ret){
    if (err) console.log(err);
    console.log(ret);
};
yottadb.findKeysFromValue(indexPath, test, cb)

This will return an array of keys which values equals to 1. if cb is null, findKeysFromValue is called synchronously, and the array of keys is returned.

findFromValue

findFromValue works exactly as findKeysFromValue, with the only exception that it returns a key value object, as opposed to an array of keys, like returned by findKeysFromValue.

var indexPath = 'raw';
var test = function(value){
    return value === 1;
};
var cb = function(err, ret){
    if (err) console.log(err);
    console.log(ret);
};
yottadb.findFromValue(indexPath, test, cb)

About

The motivation of creating the Yotta DB is that I was looking for something similar to Redis without installation as a heavy dependency. High performance is a concern in the design of Yotta DB. Most operations happen in a memory cache layer, and the cache is synchronized to the disk every second if necessary or when the cache is too large.

Roadmap

There are several things on my mind to do for Yotta DB:

  1. Implementation in other languages like Golang, Java and C, currently working on Golang binding;

Patches and ideas welcome.