Seneca data store plugin for SimpleDB
npm install seneca-simpledb-storeThis module is a plugin for the Seneca framework. It provides a
storage engine that uses Simple DB to persist data. This module is for production use.
It also provides an example of a document-oriented storage plugin code-base.
The Seneca framework provides an
ActiveRecord-style data storage API.
Each supported database has a plugin, such as this one, that
provides the underlying Seneca plugin actions required for data
persistence.
If you're using this module, feel free to contact me on twitter if you
have any questions! :) @pelger
Current Version: 0.1.0
``sh`
npm install seneca
npm install seneca-simpledb-store
You don't use this module directly. It provides an underlying data storage engine for the Seneca entity API:
var entity = seneca.make$('typename')
entity.someproperty = "something"
entity.anotherproperty = 100
entity.save$( function(err,entity){ ... } )
entity.load$( {id: ...}, function(err,entity){ ... } )
entity.list$( {property: ...}, function(err,entity){ ... } )
entity.remove$( {id: ...}, function(err,entity){ ... } )
The standard Seneca query format is supported:
* entity.list$({field1:value1, field2:value2, ...}) implies pseudo-query field1==value1 AND field2==value2, ...entity.list$({f1:v1,...},{sort$:{field1:1}})
* you can only do AND queries. That's all folks. Ya'll can go home now. The Fat Lady has sung.
* means sort by field1, ascendingentity.list$({f1:v1,...},{sort$:{field1:-1}})
* means sort by field1, descendingentity.list$({f1:v1,...},{limit$:10})
* means only return 10 resultsentity.list$({f1:v1,...},{skip$:5})
* means skip the first 5entity.list$({f1:v1,...},{fields$:['field1','field2']})
* means only return the listed fields (avoids pulling lots of data out of the database)entity.list$({f1:v1,...},{native$:[{-mongo-query-},{-mongo-options-}]})
* you can use sort$, limit$, skip$ and fields$ together
* allows you to specify a native mongo query, as per node-mongodb-native
As with all seneca stores, you can access the native driver, in this case, the node-seimpledb-native object using entity.native$(function(err,collection){...})`.
cd test;
cp keys.js keys.mine.js
vim keys.min.js
mocha mongo.test.js --seneca.log.print