Windshaft-cartodb/lib/cache/backend/fastly.js
2019-10-21 19:07:24 +02:00

19 lines
506 B
JavaScript

'use strict';
var FastlyPurge = require('fastly-purge');
function FastlyCacheBackend (apiKey, serviceId) {
this.serviceId = serviceId;
this.fastlyPurge = new FastlyPurge(apiKey, { softPurge: false });
}
module.exports = FastlyCacheBackend;
/**
* @param cacheObject should respond to `key() -> String` method
* @param {Function} callback
*/
FastlyCacheBackend.prototype.invalidate = function (cacheObject, callback) {
this.fastlyPurge.key(this.serviceId, cacheObject.key(), callback);
};