
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
backbone-cache-sync
Advanced tools
A server-side adapter that caches Backbone.fetch requests using Redis.
An implementation of Backbone.sync that takes the cache: true
option. This will store the response in Redis keyed by the url. The
next request to that url with cache: true
will fetch the cached data
from Redis instead of making
a GET request. Requires
backbone-super-sync.
REDIS_URL = "redis://redistogo:t0k3n@crestfish.redistogo.com:1337/";
DEFAULT_CACHE_TIME = 3600;
NODE_ENV = "production";
var Backbone = require('backbone');
Backbone.sync = require('backbone-super-sync');
cacheSync = require('backbone-cache-sync');
cacheSync(Backbone.sync, REDIS_URL, DEFAULT_CACHE_TIME, NODE_ENV);
model = new Backbone.Model({id: 'bar'});
model.urlRoot = '/foo';
model.fetch({cache: true});
Please fork the project and submit a pull request with tests. Install node modules npm install
and run tests with make test
MIT
FAQs
A server-side adapter that caches Backbone.fetch requests using Redis.
The npm package backbone-cache-sync receives a total of 10 weekly downloads. As such, backbone-cache-sync popularity was classified as not popular.
We found that backbone-cache-sync demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.