]> git.saurik.com Git - redis.git/blobdiff - client-libraries/ruby/lib/pipeline.rb
client libs removed from Redis git
[redis.git] / client-libraries / ruby / lib / pipeline.rb
diff --git a/client-libraries/ruby/lib/pipeline.rb b/client-libraries/ruby/lib/pipeline.rb
deleted file mode 100644 (file)
index acab5ac..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-require "redis"
-
-class Redis
-  class Pipeline < Redis
-    BUFFER_SIZE = 50_000
-    
-    def initialize(redis)
-      @redis = redis
-      @commands = []
-    end
-   
-    def call_command(command)
-      @commands << command
-    end
-
-    def execute
-      @redis.call_command(@commands)
-      @commands.clear
-    end
-    
-  end
-end