From 2db7fba4d74b663da16625a990f7b7624842712a Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Fri, 18 Dec 2015 15:59:03 +0200 Subject: Added queue-demonstration programs. --- queue/zset/add.rb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 queue/zset/add.rb (limited to 'queue/zset/add.rb') diff --git a/queue/zset/add.rb b/queue/zset/add.rb new file mode 100755 index 0000000..cd63503 --- /dev/null +++ b/queue/zset/add.rb @@ -0,0 +1,22 @@ +#!/usr/bin/ruby +# +# Add the same three tests over and over again. +# +# +require "redis" + +@redis = Redis.new(:host => "127.0.0.1") + + +x = [] + +x.push( "http://example.com/ must run http otherwise 'fail'" ) +x.push( "1.2.3.4 must run ping otherwise 'fail'" ) +x.push( "https://steve.net/ must run https otherwise 'fail'" ) + + +for i in 0 .. 10 + x.each do |test| + @redis.zadd('zset', Time.now.to_i, test) + end +end -- cgit v1.2.1