This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Rhys (author)
Mon Oct 05 03:53:31 -0700 2009
| name | age | message | |
|---|---|---|---|
| |
LICENSE | Tue Jul 07 04:15:51 -0700 2009 | |
| |
README | Thu Oct 01 08:52:37 -0700 2009 | |
| |
demo.js | Thu Oct 01 08:52:37 -0700 2009 | |
| |
simple.js | Thu Oct 01 08:52:37 -0700 2009 | |
| |
tyrant.js | Mon Oct 05 03:53:31 -0700 2009 |
README
node-tyrant
===========
This is an implementation of the Tokyo Tyrant network protocol for the Node javascript/v8 language.
Update: v0.1.1
node-tyrant has been updated to use the new binary stream representation, and now uses promises for callbacks.
Install Tokyo Cabinet / Tokyo Tyrant, and set up either a b-tree or table database:
For a table database:
ttserver casket.tdb
For a b-tree (key/value) database:
ttserver casket.tcb
Quick Example
------------
var tyrant = require("tyrant.js");
var c = tyrant.connect();
c.addListener("connect", function (){
c.put('town', 'Bangor');
c.get('town').addCallback(function(value) {
puts('Town : '+value);
c.quit();
});
});







