Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kaermorchen/prerender-mysql-cache

Prerender plugin for MySQL caching
https://github.com/kaermorchen/prerender-mysql-cache

Last synced: 22 days ago
JSON representation

Prerender plugin for MySQL caching

Awesome Lists containing this project

README

        

# prerender-mysql-cache

MySQL storage for prerendered HTML.
Automatically creates a table 'pages' and stores the processed HTML.

#Installation:

npm install prerender-mysql-cache

Edit server.js:

process.env.PRERENDER_MYSQL_CACHE_MYSQL_URL = "mysql://user:pass@host/db";

//If you want to updated cache, specify time life in seconds
process.env.PRERENDER_MYSQL_CACHE_REFRESH_TIME = 24 * 3600;

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

server.start();