2014-02-25 11:27:14 -05:00
|
|
|
Settings = require "settings-sharelatex"
|
|
|
|
redis = require('redis')
|
|
|
|
redisConf = Settings.redis?.web or {host: "localhost", port: 6379}
|
|
|
|
rclient = redis.createClient(redisConf.port, redisConf.host)
|
|
|
|
rclient.auth(redisConf.password)
|
|
|
|
|
2014-03-21 09:17:58 -04:00
|
|
|
rawUpdatesKey = (doc_id) -> "UncompressedHistoryOps:#{doc_id}"
|
|
|
|
docsWithHistoryOpsKey = (project_id) -> "DocsWithHistoryOps:#{project_id}"
|
2014-02-25 11:27:14 -05:00
|
|
|
|
|
|
|
module.exports = RedisManager =
|
|
|
|
getOldestRawUpdates: (doc_id, batchSize, callback = (error, rawUpdates) ->) ->
|
2014-03-21 09:17:58 -04:00
|
|
|
key = rawUpdatesKey(doc_id)
|
2014-02-25 11:27:14 -05:00
|
|
|
rclient.lrange key, 0, batchSize - 1, (error, jsonUpdates) ->
|
|
|
|
try
|
|
|
|
rawUpdates = ( JSON.parse(update) for update in jsonUpdates or [] )
|
|
|
|
catch e
|
|
|
|
return callback(e)
|
|
|
|
callback null, rawUpdates
|
|
|
|
|
2014-03-21 09:17:58 -04:00
|
|
|
deleteOldestRawUpdates: (project_id, doc_id, batchSize, callback = (error) ->) ->
|
|
|
|
# It's ok to delete the doc_id from the set here. Even though the list
|
|
|
|
# of updates may not be empty, we will continue to process it until it is.
|
|
|
|
multi = rclient.multi()
|
|
|
|
multi.ltrim rawUpdatesKey(doc_id), batchSize, -1
|
|
|
|
multi.srem docsWithHistoryOpsKey(project_id), doc_id
|
|
|
|
multi.exec (error, results) ->
|
|
|
|
return callback(error) if error?
|
|
|
|
callback null
|
2014-03-21 09:48:14 -04:00
|
|
|
|
|
|
|
getDocIdsWithHistoryOps: (project_id, callback = (error, doc_ids) ->) ->
|
|
|
|
rclient.smembers docsWithHistoryOpsKey(project_id), callback
|