Kaur Kuut

Results 18 comments of Kaur Kuut

We would have the same problem as discussed in the issue you linked. We depend on `google.golang.org/appengine/memcache`. To work outside of GAE, we would need a similar memcache package. Right...

Yes the fate of the Go 1.11 runtime is unclear. I hope they won't deprecate it too soon given how many applications have been written using the appengine APIs. I...

Still no update on `cloud.google.com/go` support and that's unlikely to change in the near future. However in an interesting twist [Google has released](https://cloud.google.com/appengine/docs/standard/go/release-notes#September_27_2021) `google.golang.org/appengine/v2` which works on Go 1.12+. Those...

With what kind of data have you been getting the contention errors? I think contention errors are exclusive to concurrent writes to the same entity group. Do you use PutMulti...

The delay has no positive effects for PutMulti usage where the entities aren't in the same entity group, and this is how it's designed to be used. You can read...

> But I think a single import of many items should still be supported by goon. Yes. Have you gotten contention errors with GetMulti?

I would again like to point towards the 1 wps guideline. Batch writing 4000 entities into the same entity group errors heavily against this guideline. Lets say for a moment...

Interesting and indeed I think consecutive calls after waiting for a return on the previous batch seems like a better solution. It's more dynamic and adapts based on how long...

I support this idea. When [I brought this up](https://issuetracker.google.com/issues/35898887) back in 2015 the reply was that this would not be implemented by Google because you could achieve this with `PropertyLoadSaver`....

I should note that these two libraries are not binary compatible. That is to say, they serialize certain entities in different ways. So if you have some complex entities saved...