Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 475 Bytes

DOC.md

File metadata and controls

20 lines (15 loc) · 475 Bytes

Pipelining Example

PING:       *1\r\n$4\r\nPING\r\n
SET k v:    *3\r\n$3\r\nSET\r\n$1\r\nk\r\n$1\r\nv\r\n
GET k:      *2\r\n$3\r\nGET\r\n$1\r\nk\r\n
$ (printf 'CMD1CMD2CMD3';) | nc localhost 7379
$ (printf '*1\r\n$4\r\nPING\r\n*3\r\n$3\r\nSET\r\n$1\r\nk\r\n$1\r\nv\r\n*2\r\n$3\r\nGET\r\n$1\r\nk\r\n';) | nc localhost 7379

Storm

Storm is a series of utility that allows us to fire bulk request to the Dice Database

$ go run storm/set/set.go