From ed78186fdcdcc2ee40b6dbb3279fb1d11949140b Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Fri, 15 Aug 2014 16:09:23 +0000 Subject: [PATCH] get rid of this unused --buffer option this was used in an earlier version of the program, but it no longer has any kind of meaning --- rsload.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/rsload.go b/rsload.go index f46fc51..8c7fe33 100644 --- a/rsload.go +++ b/rsload.go @@ -18,7 +18,6 @@ var options struct { host string port int password string - buffer int pipe bool profile string verbose bool @@ -246,7 +245,6 @@ func init() { flag.StringVar(&options.host, "h", "127.0.0.1", "hostname") flag.IntVar(&options.port, "p", 6379, "port") flag.StringVar(&options.password, "a", "", "password") - flag.IntVar(&options.buffer, "buffer", 0, "number of outstanding statements allowed before throttling") flag.BoolVar(&options.pipe, "pipe", false, "transfers input from stdin to server") flag.StringVar(&options.profile, "profile", "", "pprof file output for performance debugging") flag.BoolVar(&options.verbose, "v", false, "verbose mode (prints all requests and responses)")