Matt Silverlock

Results 167 comments of Matt Silverlock

You can also use `gcloud beta compute backend-service update $NAME --cache-mode=FORCE_CACHE_ALL` to forcibly cache the responses (as of gcloud SDK 309.0.x).

Only our side - it is effectively s-maxage. You can use --client-ttl=0 to force revalidation on the client or --custom-response-header=‘Cache-Control: no-cache’ to prevent browser caching entirely. https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching#Controlling_caching The new gcloud...

If you did this I'd recommend the following: 1. Continue to accept `func(http.ResponseWriter, *http.Request)` for backwards compatibility with the large, existing ecosystem 2. Continue to accept `http.Handler` 3. Add support...

@moraes Can I assume your latest commits and comments in #4 supersede the comment above? Postscript: totally get what you mean here regarding the ambiguity about where `context.Context` support will...

The Gorilla organization can create a "team" that includes gofrs members, and grant that team access to the websockets project.

I think that becomes pretty complicated, and the "gorilla/websocket" name is fairly widespread. Solving group permissions is easier than forking, mirroring and dealing with end-user confusion. Vanity import paths don't...

In the current version of the driver, you can always: ``` var response User err := r.Table("users").Get("doesnotexist").Run(session).One(&response) if response.Id == "" { // return User{}, custom err } ``` Similarly,...

@jfbus Note that I'm assuming that `response.Id` is the auto-generated id from RethinkDB, which _is_ a string. If you're generating your own id's, then treat my snippet as an example...

Superseded by #16374

These aren't for pre-signed URLs. They are for direct token access. What parts have you believing otherwise?