New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

monc

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

monc - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

10

lib/mongoose.js

@@ -195,2 +195,10 @@

}
_this.getDir = function(key){
_this.__log('Cache hit -> ' + key );
return _this.cacheMod.get(key);
}
_this.cleanFirst = function(binKey){
this.__binKey = _this.setKey(binKey,this);
return this;
}
_this.getModelBinKey = function(){

@@ -209,2 +217,3 @@ _this.__log('Return ' + this.modelName );

//map the utility functions to the Model and the query prototype!
_this.Query.prototype.clean = _this.cleanFirst;
_this.Model.cleanAll = _this.Query.prototype.cleanAll = _this.cleanAll;

@@ -215,2 +224,3 @@ _this.Model.cleanMultiple = _this.Query.prototype.cleanMultiple = _this.cleanMultiple;

_this.Model.setDir = _this.setDir;
_this.Model.getDir = _this.getDir;

@@ -217,0 +227,0 @@ _this.Model.getModelBinKey = _this.getModelBinKey;

2

package.json
{
"name": "monc",
"version": "0.1.0",
"version": "0.1.1",
"author": "Theodore Vorillas <sayhi@vorillaz.com>",

@@ -5,0 +5,0 @@ "description": "The ultimate MongoDB cache module.",

Monc - the ultimate MongoDB cache module
# Installation
Monc is quite easy to install and configure.
Using NPM
```bash
npm install monc --save
```
## Getting started
Monc should be configured to work along with Mongoose.
```javascript
var monc = require('monc'),
mongoose = require('mongoose'),
options = {};
//Configure monc
monc.install(mongoose, options);
```
Monc is all set and ready to work.
## Options
* `max` The maximum size of the cache, checked by applying the length
function to all values in the cache. Not setting this is kind of
silly, since that's the whole purpose of this lib, but it defaults
to `Infinity`.
* `maxAge` Maximum age in ms. Items are not pro-actively pruned out
as they age, but if you try to get an item that is too old, it'll
drop it and return undefined instead of giving it to you.
* `setFlag` : `boolean`. This option allows Monc module to attach a `comingFromCache` property on
each document retrieved from the cache
* `canLog`: `boolean`. This option allows Monc module to log information values on the console.
* `modelValues`: `boolean` . This option allows Monc module to keep a record with each cache object saved per Model.
## Monc API
Monc attaches several useful methods both on Models and Query operations
### Query methods
`.cache(binKey)` This chainable method stores or retrieves a set of documents.
The binKey is optional.
```javascript
var test = mongoose.model('testModel');
test.find({}).lean().cache().exec(function(err, docs) {
//docs are saved into the cache
});
test.find({}).lean().cache().exec(function(err, docs) {
//docs mapped to binkey: "helloThere" are retrieved from Cache
});
test.find({}).lean().exec(function(err, docs) {
//docs are retrieved from the db
});
test.find({}).lean().cache("helloCache").exec(function(err, docs) {
//docs are saved into the cache, mapped to "helloCache"
});
```
`.clean(binKey)` Removes the stored objects.
The binKey is optional.
```javascript
var test = mongoose.model('testModel');
test.find({}).cleanAll().cache("helloCache").exec(function(err, docs) {
//Firsty the cache is reset
//afterwards docs are saved into the cache, mapped to "helloCache"
});
```
`.cleanAll()` Resets the whole cache.
```javascript
var test = mongoose.model('testModel');
test.find({}).cleanAll().cache("helloCache").exec(function(err, docs) {
//Firsty the cache is reset
//afterwards docs are saved into the cache, mapped to "helloCache"
});
```
`.cleanMultiple([binkeys])` Resets all the associated values maped
```javascript
var test = mongoose.model('testModel');
test.find({}).cleanMultiple(["binkey1","binkey2"]).cache("helloCache").exec(function(err, docs) {
//Firsty binkey1 and binkey2 are removed from the cache
//afterwards docs are saved into the cache, mapped to "helloCache"
});
```
### Model methods
Since fetching Mongoose queries could be hard and inefficient Monc attaches useful methods on the Models as well.
`.cleanAll()` Resets the whole cache.
```javascript
var test = mongoose.model('testModel');
test.cleanAll();
```
`.cleanMultiple([binkeys])` Resets all the associated values maped
```javascript
var test = mongoose.model('testModel');
test.cleanMultiple(["binkey1","binkey2"]);
//Firsty binkey1 and binkey2 are removed from the cache
//afterwards docs are saved into the cache, mapped to "helloCache"
```
`.allValues()` Grab all the values stored into the cache.
```javascript
var test = mongoose.model('testModel');
test.allValues().map(function(v,i){
console.log("stored", v)
});
```
`.dump()` Grab all the values and matched keys stored into the cache.
```javascript
var test = mongoose.model('testModel');
test.dump().map(function(v,i){
console.log("key", v["k"]);
console.log("value", v["v"]);
})
```
`.getDir(key)` Directly grab the associated stored object.
```javascript
var test = mongoose.model('testModel');
test.setDir("key",[{"hello" : "world"}]);
test.getDir("key").map(function(v,i){
console.log("key", v["k"]);
console.log("value", v["v"]);
})
```
`.setDir(key,val)` Directly store an object to cached.
```javascript
var test = mongoose.model('testModel');
test.setDir("key",{"hello" : "world"});
test.dump().map(function(v,i){
console.log("key", v["k"]); // key
console.log("value", v["v"]); //{"hello" : "world"}
})
```
`.getModelBinKey()` Each Model has a unique identifier, using `.getModelBinKey()` method you may retrieve it .
```javascript
var test = mongoose.model('testModel');
console.log(test.getModelBinKey())
```
`.assoc()` One of the best methods provided. Each Query store into the cache is associated with the parent Model. Using `assoc()` you can retrieve the active keys that are mapped with the given model . This method requires the `modelValues` set to true.
```javascript
var test = mongoose.model('testModel');
test.find({}).cache("helloCache").exec(function(err, docs) {});
test.find({}).cache("helloCache1").exec(function(err, docs) {});
test.assoc().map(function(v,i){
console.log(v); // ["helloCache", "helloCache1"]
//get the value !!
console.log(test.getDir(v));
})
```
`.assocObj()` Retrieve the associated stored objects and keys mapped to the parent Model. This method requires the `modelValues` set to true.
```javascript
var test = mongoose.model('testModel');
test.find({}).cache("helloCache").exec(function(err, docs) {});
test.find({}).cache("helloCache1").exec(function(err, docs) {});
test.assocObj().map(function(v,i){
console.log(v); //keys and objects
})
```
## Running tests
Tests are powered by Mocha and Chai
There are a bunch of them provided. Run them by.
```bash
npm install
npm test
```
>There are only two hard things in Computer Science: cache invalidation and naming things. -- Phil Karlton

@@ -273,3 +273,3 @@ var expect = require('chai').expect,

function(arg1, callback){
albumModel.find({}).lean().cache("binKey3").exec(function(err, newAlbums) {
albumModel.find({}).clean().lean().cache("binKey3").exec(function(err, newAlbums) {
if (err) return done(err);

@@ -282,2 +282,3 @@ callback(null, 'next');

//one more is the attached model's keys if this options is set
expect(albumModel.allValues().length).to.be.within(3,4);

@@ -284,0 +285,0 @@ done();

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc