来自perl的redis的非阻塞blpop

时间:2014-04-01 07:20:26

标签: perl redis

我有一个以连续循环运行的程序

Pick one job from a Redis using BLPOP
Process the job,
LOOP

我需要做的是 虽然工作正在进行下一个工作,以便我可以节省用于redis blpop的时间..我怎么能这样做

1 个答案:

答案 0 :(得分:0)

像这样:

do forever
   BLPOP next job     # from Redis
   wait               # for all background jobs to finish      
   process job &      # process job in the background
done