summaryrefslogtreecommitdiff
path: root/queue/set/run.rb
blob: f0b747624b8e9089fa9925427aefcbca687344a4 (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
#!/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.spop('set')

    if !job.nil?
      return job
    else
      sleep(timeout)
    end

  end
end



while( x = fetch() )
  puts "Got job : #{x}"
  if ( x =~ /ping/i )
    puts "PING TEST - sleeping"
    sleep 5
  end
end