Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1194)

Unified Diff: service/memcache/raw_interface.go

Issue 1269113005: A transparent cache for datastore, backed by memcache. (Closed) Base URL: https://github.com/luci/gae.git@add_meta
Patch Set: fix comments Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « service/memcache/memcache.go ('k') | service/memcache/types.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: service/memcache/raw_interface.go
diff --git a/service/memcache/raw_interface.go b/service/memcache/raw_interface.go
index 041b40753d1f66b20a377e3fd161345b290a0ede..5c3536a321df32820c218d2da1f509ad882bffa7 100644
--- a/service/memcache/raw_interface.go
+++ b/service/memcache/raw_interface.go
@@ -8,7 +8,8 @@ package memcache
type RawCB func(error)
// RawItemCB is the callback for RawInterface.GetMulti. It takes the retrieved
-// item and the error for that item (e.g. ErrCacheMiss) if there was one..
+// item and the error for that item (e.g. ErrCacheMiss) if there was one. Item
+// is guaranteed to be nil if error is not nil.
type RawItemCB func(Item, error)
// RawInterface is the full interface to the memcache service.
« no previous file with comments | « service/memcache/memcache.go ('k') | service/memcache/types.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698