1.0.1 • Published 9 years ago

prerender-mongo-cache v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
9 years ago

prerender-mongo-cache

Prerender plugin for MongoDB caching, to be used with the prerender node application from prerender

How it works

This plugin will store all prerendered pages into a MongoDB instance. There is currently no expiration functionality, which means that once a page is stored, future requests for prerendering a page will always be served from from the database cache if it's available and the page caches are never updated. By default it will connect to your MongoDB instance running on localhost and use the pages collection in prerender database.

How to use

In your local prerender project run:

$ npm install prerender-mongo-cache --save

Then in the server.js that initializes the prerender:

server.use(require('prerender-mongo-cache'));

How to update stored cache

Just change the HTTP GET method to POST or PUT ,then prerender will re spider it and cache it.

1.0.1

9 years ago

1.0.0

9 years ago