我有一个以连续循环运行的程序
Pick one job from a Redis using BLPOP
Process the job,
LOOP
我需要做的是 虽然工作正在进行下一个工作,以便我可以节省用于redis blpop的时间..我怎么能这样做
答案 0 :(得分:0)
像这样:
do forever
BLPOP next job # from Redis
wait # for all background jobs to finish
process job & # process job in the background
done