Socket
Book a DemoInstallSign in
Socket

firenze-adapter-redis

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

firenze-adapter-redis

Redis adapter for firenze.js ORM

0.1.0
latest
Source
npmnpm
Version published
Weekly downloads
3
50%
Maintainers
1
Weekly downloads
 
Created
Source

firenze-adapter-redis

Build Status Coverage Status npm Join the chat at https://gitter.im/fahad19/firenze

Redis database adapter for firenze.js

Install it with npm:

$ npm install --save firenze-adapter-redis

The adapter currently supports only setting/getting/deleting a particular key at this moment.

Contents

Usage

var f = require('firenze');
var Database = f.Database;
var RedisAdapter = require('firenze-adapter-redis');

var db = new Database({
  adapter: RedisAdapter,

  // optional config
  port: 6379,
  host: '127.0.0.1'
  options: {} // passed to `redis.createClient(port, host, options)`
});

Operations

Examples below assume you have an instance of a Post model already:

var Post = db.createModelClass({
  primaryKey: 'key',
  displayField: 'value'
});

Creating

var post = new Post({
  key: 'myUniqueKey',
  value: 'some value here...'
});

post.save().then(function (model) {
  var value = model.get('value'); // some value here...
});

Reading

var post = new Post({
  key: 'myUniqueKey'
});

post.fetch().then(function (model) {
  var value = model.get('value');
});

Updating

var post = new Post({
  key: 'myUniqueKey'
});

post.set('value', 'some new value...');

post.save().then(function (model) {
  var value = model.get('value');
});

Deleting

var post = new Post({
  key: 'myUniqueKey'
});

post.delete().then(function () {
  // delete successful
});

Testing

Tests are written with mocha, and can be run via npm:

$ npm test

License

MIT © Fahad Ibnay Heylaal

Keywords

firenze

FAQs

Package last updated on 01 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.