mirror of
https://github.com/mailgun/groupcache.git
synced 2024-11-16 14:10:04 +00:00
48a0ce2463
* `Get()` now returns immediately when context is done during a groupcache peer conversation. Previously `Get()` would call the `Getter` with a done context.
12 lines
182 B
Protocol Buffer
12 lines
182 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "groupcache_test";
|
|
|
|
package groupcachepb;
|
|
|
|
message User {
|
|
string id = 1;
|
|
string name = 2;
|
|
int64 age = 3;
|
|
bool is_super = 4;
|
|
} |