Code Monkey home page Code Monkey logo

node_cpdb's Introduction

cpdb - crazy pili's database

1) Introduction
2) Features
3) Requirements
4) Example Code
5) Maintenance
6) Tests
7) Contact

---------------------------------------------------------------------------
Introduction

cpdb is a NoSQL database for node.js.

---------------------------------------------------------------------------
Features

* Stores key / values pairs persistent in the file system
* Supports transactions
* Generate unique keys

---------------------------------------------------------------------------
Requirements

* DB keys must be strings
* DB values must be serializable using JSON.stringify and JSON.parse

---------------------------------------------------------------------------
Example Code

Here's some example code which stores values in a database:

var db = require('cpdb').DB('path/to/my/db/directory');

var trans = db.newTransaction();
trans.set('key', { value: 'hello world!' });
if(somethingWentReallyBad){
	trans.rollback();
}
else{
	trans.commit(function(){
			// success
			console.log('Data stored');
		},
		function(e){
			// error
			console.log('Error: ' + e);
		});
}

And some more code which retrieves values from the database:

var db = require('cpdb').DB('path/to/my/db/directory');

var readOnly = true;
var trans = db.newTransaction(readOnly);
trans.get('key', function(data){
		// success
		if(data === undefined){
			console.log('Nothing stored in DB');
		}
		else{
			console.log('Got ' + data);
		}
	},
	function(e){
		// error
		console.log('Error: ' + e);
	});

---------------------------------------------------------------------------
Maintenance

The database uses some temporary files and folders for implementing
transactions. Sometimes these transaction data is not delete correctly. It is
safe to manually clear the transaction data when all database instances are
shut down.

To clear the transaction data remove the transactions directory below your
database directory.

---------------------------------------------------------------------------
Tests

Execute the tests using make:

$ make test

---------------------------------------------------------------------------
Contact

* Markus Pielmeier <[email protected]>

node_cpdb's People

Contributors

marook avatar jfhbrook avatar

Watchers

James Cloos avatar Aaron Harder 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.