4
votes
1answer
191 views

Exceeded soft private memory limit

We have a terrible experience with gae go. When our app was a free one, we never had problem with Exceeded soft private memory limit. We hit over quota thus we decided to pay. Our daily budget is set ...
2
votes
1answer
67 views

GAE Go — How to use GetMulti with non-existent entity keys?

I've found myself needing to do a GetMulti operation with an array of keys for which some entities exist, but some do not. My current code, below, returns an error (datastore: no such entity). err ...
2
votes
1answer
87 views

GetAll: keys and entities guaranteed to be in same order?

I've been using this to load entities and still have the keys available: type Post struct { Title string Created time.Time // ... key *datastore.Key } func All(c ...
0
votes
1answer
59 views

BiDirectional Key to <-> “CompositKey” lookup in GAE?

Am writing a Go application on GAE And I have a type called Connection{Token, ToAdress, FromAdress} I want to store it in the datastore so that I can look it up via GetConnectionByT(Token string) ...
1
vote
2answers
73 views

Kindless Queries in App Engine Go

In Python it's q = db.Query() q.ancestor(ancestor_key) I tried: q := datastore.NewQuery("") q.Ancestor(ancestor_key) I get the error "datastore: empty kind" when running GetAll I also tried: q ...
1
vote
1answer
59 views

Automatically include ID from datastore in Go

I'm using Go on App Engine. I'm loading struct data from App Engine datastore. Currently I have to get the object ID from the key after the object is loaded from the datastore and then assign it to ...
1
vote
1answer
52 views

Largest Datatype in GAE GO Datastore

What is the largest data type in google appengine go datastore. I come across a limitation in string type which is only permits 500 characters. Thank you!
2
votes
2answers
120 views

Nested structs on GAE datastore using Go

I'm trying to figure out how to get nested structs to work with GAE datastore using Go. I know the datastore doesn't specifically support nested structs. I need to find a simple way of getting user ...
0
votes
1answer
132 views

Get an entity by a key passed via GET parameter

I have http://localhost:8080/?key=ahFkZXZ-ZGV2LWVkdW5hdGlvbnIOCxIIVXNlckluZm8YLAw I would like to ask on how to: Decode and convert the "key" to a *datastore.Key And use it to get an entity. ...
2
votes
1answer
107 views

Add *datastore.Key to slice

I am getting all the data successfully and displayed in a table using template. I am using Go in this code querying the datastore with Membership as entity type. In the html page, all the data are ...
2
votes
2answers
141 views

Google Go not generating unique identifiers?

I'm trying to persist entities, and allow the database to generate a key. Unfortunately, I can't seem to tease a synthetic ID out of the API... Here's what I'm doing: case "POST": d,_ := ...
1
vote
1answer
126 views

Filter entities based on a slice property

I have an app using Go with this entity: type Product struct { Name string Related []*datastore.Key } Is this possible to find all products that are related with a given key?
2
votes
2answers
337 views

GAE filter entity key (Golang)

I want to use look like datastore.NewQuery("Article").Filter("ID =", id) to get entity key. How do this? Sorry for my poor English. Thanks!
0
votes
1answer
147 views

Trouble with Queries/Datastore in Google App Engine - Go API

I'm playing with Google App Engine using the Go APIs and despite everything I've tried I can't get the Queries to return data that is in the datastore. I can see that Put() works as expected, and the ...
2
votes
1answer
149 views

Getting a datastore entity into an interface in Go

I have a couple of datastore Kinds that have the same field Id. Is it possible to create one generic function that can get me this value? Something similar to this? var i interface{} err = ...
2
votes
1answer
84 views

Update a datastore entity - change ancestor without changing entity key

Is it possible to update the ancestor of an entity without changing the entity key? How would I accomplish that in Go? I have a hierarchy similar to this: Company/Department/Employee It started ...
1
vote
3answers
173 views

Cost of creating a datastore.Key: Storing a key in struct versus an id and fetching from the datastore

Consider the following two alternatives. A) Storing the key in the struct. type Point struct { Place *datastore.Key Lat float64 Lon float64 } Then fetching using the key: place := ...
1
vote
2answers
201 views

Filtering datastore results by parent entity

This question as already been answered for Python: How to get all records from GAE datastore with particular parent? How do I do it in Go? I would like to do something like: t := new(TagRecord) k, ...
2
votes
2answers
192 views

Booleans always false when Putting entities in Google App Engine datastore - Golang

For some reason when I attempt to store boolean data in the Google Apps datastore, it always stores as false. My entity definition looks like this: type Link struct { Name string ...
1
vote
3answers
766 views

Golang GAE - intID in struct for mustache

Here is an Example of the app. The essential code is in: golang-code/handler/handler.go (After the subject should appear an ID!) Im trying to build a little blog system in Golang on Google Appengine ...
1
vote
3answers
403 views

Search entries in Go GAE datastore using partial string as a filter

I have a set of entries in the datastore and I would like to search/retrieve them as user types query. If I have full string it's easy: q := datastore.NewQuery("Products").Filter("Name =", ...
1
vote
2answers
124 views

How to perform this in update in Go? (Google App Engine)

I need to update a datastore entity in a way that will not be broken by multiple concurrent users doing the same thing. I understand that I can't use SQL for updating the datastore but I'm not sure ...
0
votes
1answer
203 views

utf8 error in GAE Datastore Viewer (Go runtime)

I am writing a webapp with the Go runtime in GAE. I am saving a struct which contains a string, which is the result of hashing the bytes of another string with MD5, and then encoding the hash sum ...
0
votes
1answer
258 views

How to ignore errors in datastore.Query.GetAll()?

I just started developing a GAE app with the Go runtime, so far it's been a pleasure. However, I have encountered the following setback: I am taking advantage of the flexibility that the datastore ...
0
votes
2answers
376 views

Updating entity in Google Appengine datastore with Go

I am toying with GAE, Go and the datastore. I have the following structs: type Coinflip struct { ...
10
votes
3answers
634 views

How would I implement one-to-many on App Engine in Go?

How would I implement one-to-many on Google App Engine in the Go programming language? For example, if I have the structs below, how would I store the association of many Votes to one Comment? Would ...