redis_objects

0.0.1 • Public • Published

Redis Objects

  • Mixin redis commands to an object
  • Use the objects namespace property to namespace redis calls
  • Also provides an async stack for manipulating redis return value (obvious usecase - bulk load objects from redis ids)

Example

var ro = require("redis_objects")

function User(id) {}

User.namespace = "Users:"
ro.mixin(User)

User.get("xx", function(val) {
  // redis "get Users:xx"
})

It can be mixed into a prototype as well:

function User(id) {
  this.namespace = "User:" + id + ":"
}

ro.mixin(User.prototype)

var user = new User(42)

user.get("xx", function(val) {
  // redis "get User:42:xx" 
})

Example 2

Showing transformations: trailing function calls are called as an asynchronous stack of maps. Eg. if User.load_bulk might instantiate a list of User objects from a list of ids:

User.smembers("all", User.load_bulk, function(users) {
  // user is now a list of instantiated objects
})

Example 3

Showing mounting to a different part of the object and a different property

var User = {
  key: "Users:"
} 
ro.mixin(User, { 
  namespace_property: "key",
  mount: "db"
})

User.db.get("mystring", function(val) {
  // redis "get Users:mystring"
})

API

require("redis_objects").mixin(_object_, {
  at: "db",                    // where to mount the redis commands (defaults to null => on the object itself)
  namespace_property: "key",   // name of property that contains the namespace (defaults to 'namespace')
  commands: ["get", "set"],    // array of redis properties to mixin (defaults to string commands)
  client: obj                  // redis client
})

Install

npm install redis_objects

run tests

make

License

(The MIT License)

Copyright (c) 2011 weepy <jonahfox@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i redis_objects

Weekly Downloads

0

Version

0.0.1

License

none

Last publish

Collaborators

  • weepy