Skip to content

iixlabs/redis-repository

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redis Repository

A simple repository structure using redis as the underlying storage.

##Usage add redis-repository to your package.json and import the redisRepositoryFactory:

var redisRepositoryFactory = require('redis-repository'),

###creating a new set

var catRepository = redisRepository.create(connectionString,'cat');

###Adding to the repository

catRepository.add({name:'trevor'},function(){ 
    console.log('cat added!');
});

###Getting data from the repository

catRepository.all(function(cats){
    console.log('Look at all my kitties : ',cats);
});

###Removing data from the repository

catRepository.remove({name:'trevor'},function(){ 
    console.log('cat removed!');
});

About

Simple repository using redis

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published