renamed example

This commit is contained in:
Josh Baker 2016-08-20 11:34:06 -07:00
parent dfd45719ec
commit 1cd8973b32
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ Here's a full example of a Redis clone that accepts:
You can run this example from a terminal:
```sh
go run examples/clone.go
go run example/clone.go
```
```go
@ -142,7 +142,7 @@ GET: 1189909.50 requests per second
**Redcon**: Single-threaded, no disk persistence.
`GOMAXPROCS=1 go run examples/clone.go`
`GOMAXPROCS=1 go run example/clone.go`
```
redis-benchmark -p 6380 -t set,get -n 10000000 -q -P 512 -c 512
@ -152,7 +152,7 @@ GET: 1552354.25
**Redcon**: Multi-threaded, no disk persistence.
`GOMAXPROCS=0 go run examples/clone.go`
`GOMAXPROCS=0 go run example/clone.go`
```
redis-benchmark -p 6380 -t set,get -n 10000000 -q -P 512 -c 512