Skip to content

Commit

Permalink
Added banner to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Razmjou committed Aug 21, 2020
1 parent 3b96bc3 commit 8cec0e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 48,7 @@ Usage of gerdu:
-mcdport int
the memcached server port number (default 11211)
-protocols string
protocol 'grpc', 'http' or 'mcd' (memcached), multiple values can be selected separated by comma (default "http")
protocol 'grpc', 'http' or 'mcd' (memcached), multiple comma-separated values (default "http")
-type string
type of cache, lru or lfu, weak (default "lru")
```
Expand Down
2 changes: 1 addition & 1 deletion gocache.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 35,7 @@ var (
mcdPort = flag.Int("mcdport", 11211, "the memcached server port number")
kind = flag.String("type", "lru", "type of cache, lru or lfu, weak")
protocols = flag.String("protocols", "http",
"protocol 'grpc', 'http' or 'mcd' (memcached), multiple values can be selected separated by comma")
"protocol 'grpc', 'http' or 'mcd' (memcached), multiple comma-separated values")
tlsKey = flag.String("key", "", "SSL certificate private key")
tlsCert = flag.String("cert", "", "SSL certificate public key")
host = flag.String("host", "127.0.0.1", "The host that server listens")
Expand Down

0 comments on commit 8cec0e7

Please sign in to comment.