mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
34 lines
790 B
CoffeeScript
34 lines
790 B
CoffeeScript
|
redis = require "redis-sharelatex"
|
||
|
rclient1 = redis.createClient(cluster: [{
|
||
|
port: "7000"
|
||
|
host: "localhost"
|
||
|
}])
|
||
|
|
||
|
rclient2 = redis.createClient(cluster: [{
|
||
|
port: "7000"
|
||
|
host: "localhost"
|
||
|
}])
|
||
|
|
||
|
counter = 0
|
||
|
sendPing = (cb = () ->) ->
|
||
|
rclient1.publish "test-pubsub", counter, (error) ->
|
||
|
console.error "[SENDING ERROR]", error.message if error?
|
||
|
if !error?
|
||
|
counter += 1
|
||
|
cb()
|
||
|
|
||
|
previous = null
|
||
|
rclient2.subscribe "test-pubsub"
|
||
|
rclient2.on "message", (channel, value) ->
|
||
|
value = parseInt(value, 10)
|
||
|
if value % 10 == 0
|
||
|
console.log "."
|
||
|
if previous? and value != previous + 1
|
||
|
console.error "[RECEIVING ERROR]", "Counter not in order. Got #{value}, expected #{previous + 1}"
|
||
|
previous = value
|
||
|
|
||
|
PING_DELAY = 100
|
||
|
do sendPings = () ->
|
||
|
sendPing () ->
|
||
|
setTimeout sendPings, PING_DELAY
|