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{} |
) |