CartoDB-SQL-API/app/utils/cache_key_generator.js
Raul Ochoa a654c90b6d X-Cache-Channel generation only requires affected tables
mayWrite is redundant, and it's not its responsibility
2016-01-28 14:18:38 +01:00

6 lines
143 B
JavaScript

'use strict';
module.exports = function generateCacheKey(database, affectedTables) {
return database + ":" + affectedTables.join(',');
};