feat: Use InMemoryCache to reducve load on db

This commit is contained in:
Bouncey
2018-12-01 11:22:34 +00:00
committed by mrugesh mohapatra
parent 80c3c3ec55
commit 6475eadf82

View File

@ -1,18 +1,50 @@
import { Observable } from 'rx'; import { Observable } from 'rx';
import debug from 'debug';
import InMemoryCache from '../utils/in-memory-cache';
const log = debug('fcc:boot:donate');
const fiveMinutes = 1000 * 60 * 5;
export default function(Donation) { export default function(Donation) {
let activeDonationUpdateInterval = null;
const activeDonationCountCacheTTL = fiveMinutes;
const activeDonationCountCache = InMemoryCache(0);
const activeDonationsQuery$ = () =>
Donation.find$({
// eslint-disable-next-line no-undefined
where: { endDate: undefined }
}).map(instances => instances.length);
function cleanUp() {
if (activeDonationUpdateInterval) {
clearInterval(activeDonationUpdateInterval);
}
return;
}
process.on('exit', cleanUp);
Donation.on('dataSourceAttached', () => { Donation.on('dataSourceAttached', () => {
Donation.find$ = Observable.fromNodeCallback(Donation.find.bind(Donation)); Donation.find$ = Observable.fromNodeCallback(Donation.find.bind(Donation));
Donation.findOne$ = Observable.fromNodeCallback( Donation.findOne$ = Observable.fromNodeCallback(
Donation.findOne.bind(Donation) Donation.findOne.bind(Donation)
); );
activeDonationsQuery$().subscribe(count => {
log('activeDonator count: %d', count);
return activeDonationCountCache.update(() => count);
});
activeDonationUpdateInterval = setInterval(
() =>
activeDonationsQuery$().subscribe(count => {
log('activeDonator count: %d', count);
return activeDonationCountCache.update(() => count);
}),
activeDonationCountCacheTTL
);
}); });
function getCurrentActiveDonationCount$() { function getCurrentActiveDonationCount$() {
// eslint-disable-next-line no-undefined return Observable.of(activeDonationCountCache.get());
return Donation.find$({ where: { endDate: undefined } }).map(
instances => instances.length
);
} }
Donation.getCurrentActiveDonationCount$ = getCurrentActiveDonationCount$; Donation.getCurrentActiveDonationCount$ = getCurrentActiveDonationCount$;