Add method to get number of queued project updates

This commit is contained in:
Michael Walker 2018-01-23 11:10:54 +00:00
parent 6d44176ab5
commit 3d313ebc53

View file

@ -315,6 +315,9 @@ module.exports = RedisManager =
rclient.rpush projectHistoryKeys.projectHistoryOps({project_id}), jsonUpdate, callback
numQueuedProjectUpdates: (project_id, callback = (error, length) ->) ->
rclient.llen projectHistoryKeys.projectHistoryOps({project_id}), callback
clearUnflushedTime: (doc_id, callback = (error) ->) ->
rclient.del keys.unflushedTime(doc_id:doc_id), callback