mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-17 04:52:51 +01:00
35 lines
917 B
JavaScript
35 lines
917 B
JavaScript
'use strict';
|
|
|
|
var cacheController = {};
|
|
|
|
cacheController.get = function(req, res, next) {
|
|
var postCache = require('../../posts/cache');
|
|
var groupCache = require('../../groups').cache;
|
|
|
|
var avgPostSize = 0;
|
|
var percentFull = 0;
|
|
if (postCache.itemCount > 0) {
|
|
avgPostSize = parseInt((postCache.length / postCache.itemCount), 10);
|
|
percentFull = ((postCache.length / postCache.max) * 100).toFixed(2);
|
|
}
|
|
|
|
res.render('admin/advanced/cache', {
|
|
postCache: {
|
|
length: postCache.length,
|
|
max: postCache.max,
|
|
itemCount: postCache.itemCount,
|
|
percentFull: percentFull,
|
|
avgPostSize: avgPostSize
|
|
},
|
|
groupCache: {
|
|
length: groupCache.length,
|
|
max: groupCache.max,
|
|
itemCount: groupCache.itemCount,
|
|
percentFull: ((groupCache.length / groupCache.max) * 100).toFixed(2),
|
|
dump: req.query.debug ? JSON.stringify(groupCache.dump(), null, 4) : false
|
|
}
|
|
});
|
|
};
|
|
|
|
|
|
module.exports = cacheController; |