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

Unified Diff: service/datastore/pls_impl.go

Issue 1270063002: Rename rawdatastore -> datastore (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: and a bit more 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/datastore/pls.go ('k') | service/datastore/pls_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: service/datastore/pls_impl.go
diff --git a/service/rawdatastore/datastore_impl.go b/service/datastore/pls_impl.go
similarity index 99%
rename from service/rawdatastore/datastore_impl.go
rename to service/datastore/pls_impl.go
index 1b10daffe5676d61c1741675d052828323c13de4..f2d3e43114e2c86bd645a02b55014f9a41084525 100644
--- a/service/rawdatastore/datastore_impl.go
+++ b/service/datastore/pls_impl.go
@@ -4,7 +4,7 @@
// HEAVILY adapted from github.com/golang/appengine/datastore
-package rawdatastore
+package datastore
import (
"fmt"
@@ -369,7 +369,7 @@ var (
// The RWMutex is chosen intentionally, as the majority of access to the
// structCodecs map will be in parallel and will be to read an existing codec.
// There's no reason to serialize goroutines on every
- // gae.RawDatastore.{Get,Put}{,Multi} call.
+ // gae.datastore.{Get,Put}{,Multi} call.
structCodecsMutex sync.RWMutex
structCodecs = map[reflect.Type]*structCodec{}
)
« no previous file with comments | « service/datastore/pls.go ('k') | service/datastore/pls_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698