Index: service/memcache/types.go |
diff --git a/service/memcache/types.go b/service/memcache/types.go |
index 1bc49d8cde1cc123d664337ac0f6e317059eb819..c89d3756f016ad4c9210b7646286129e9f0e1eac 100644 |
--- a/service/memcache/types.go |
+++ b/service/memcache/types.go |
@@ -30,13 +30,15 @@ type Statistics struct { |
type Item interface { |
Key() string |
Value() []byte |
- Object() interface{} |
Flags() uint32 |
Expiration() time.Duration |
SetKey(string) Item |
SetValue([]byte) Item |
- SetObject(interface{}) Item |
SetFlags(uint32) Item |
SetExpiration(time.Duration) Item |
+ |
+ // SetAll copies all the values from other into this item (including the hidden |
+ // CasID field). |
+ SetAll(other Item) |
} |