Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 561 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 561 Bytes

grpc-keyvalue

Build Status

Running the server

curl for gRPC

brew install grpcurl

list methods

grpcurl --plaintext localhost:5005 list

Call a method

grpcurl --plaintext -d '{ "key":"kee" }' localhost:5005 keyvalue.KeyValueStore.Get

Supported Methods

  • GET
  • SET
  • DELETE

See proto definition for more details