bashtian
bashtian
I had over 4000 entities in the same entity group, but I didn't test what the maximum number was before getting the contention errors. Should I change the pull request...
You are right that strong consistency probably isn't really needed in this case. But I think a single import of many items should still be supported by goon. In the...
@mjibson I don't think it's an application problem. Of course it could be solved differently, but this is still a problem with PutMulti. Especially since you can get that many...
@xStrom I tested it in production and it works. As I understood the docs the 1 update per second is for a request to the datastore, so it can be...
I think the problem is this line in ResultsAdapter ``` h.image.setImageDrawable(null); ``` if you set it to ``` h.image.setDefaultImageResId(R.drawable.default_image); ``` it works.
@shaan7 I had the same problem and made a PR to fix it: https://github.com/golang/appengine/pull/211
I use this code: ``` final NachoTextView nachoTextView = (NachoTextView) view.findViewById(R.id.nacho_text_view); nachoTextView.setIllegalCharacters('\"'); nachoTextView.addChipTerminator('\n', ChipTerminatorHandler.BEHAVIOR_CHIPIFY_ALL); nachoTextView.addChipTerminator(' ', ChipTerminatorHandler.BEHAVIOR_CHIPIFY_TO_TERMINATOR); nachoTextView.addChipTerminator(';', ChipTerminatorHandler.BEHAVIOR_CHIPIFY_CURRENT_TOKEN); nachoTextView.setNachoValidator(new ChipifyingNachoValidator()); final Button addButton = (Button) view.findViewById(R.id.addButton); addButton.setOnClickListener(new View.OnClickListener() {...
~~The data is send as JSON but unmarshalling it into a document does not work because OneOf fields are not supported. So this feature request not needed until we can...
Currently it's not possible to create a DocumentSnapshot from a firestore.Document. I made this change in my repo to create a new DocumentSnapshot: https://github.com/bashtian/google-cloud-go/commit/d3311dabe766384e8cc050aec644950907b94360 With this change it's now possible...
The Firestore Protobuf document does not support UnmarshalJSON (https://github.com/golang/protobuf/issues/256), so we need to unmarshal it first with jsonpb. Using NewDocumentSnapshot without a custom UnmarshalJSON method would look like this: ```...