wildduck/lib/consts.js
2017-07-15 19:08:33 +03:00

12 lines
289 B
JavaScript

'use strict';
module.exports = {
// home many modifications to cache before writing
BULK_BATCH_SIZE: 150,
// how often to clear expired messages
GC_INTERVAL: 10 * 60 * 1000,
// artificail delay between deleting next expired message in ms
GC_DELAY_DELETE: 100
};