summaryrefslogtreecommitdiff
path: root/queue/zset/run.rb
blob: 2fc861c67c9954c0d252d1662181c2bfff536b35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/ruby

require "redis"
require 'pp'
@redis = Redis.new(:host => "127.0.0.1")



def fetch(timeout = 1)
  job = nil

  loop do
    job = @redis.ZREVRANGE('zset', '0', '0')

    if !job.empty?
      # We only have one entry in our array
      job = job[0]

      # Remove from the queue
      @redis.zrem('zset', job );

      return job
    else
      sleep(timeout)
    end

  end
end

seen = []

while( x = fetch() )
  puts "Got job : #{x}"
  if seen.include?(x)
    puts "Already seen #{x}"
    break
  end

  seen << x

  if ( x =~ /test 2/i )
    puts "TEST 2 - sleeping"
    sleep 5
  end
end