Greg Wilkins
Greg Wilkins
Is there a particular reason that the GAE session manager does not share session instances within an instance? If not, then we could make the new session manager being developed...
Marked as an enhancement - ie that compat should use a session manager that shares instances withing the same instance. This is supported by the new session manager in jetty-9.4...
@GabiAxel I'm working on an example for #188 that will show how to add a pure gcloud session manager to the jetty9 image. Unfortunately that configuration also has problems as...
@ludoch @meltsufin I have committed an update to VmRequestThreadFactory to the [async-support-331](https://github.com/GoogleCloudPlatform/appengine-java-vm-runtime/tree/async-support-331) branch. Looking at the code, there was already protection for creating threads from the default instance, so the...
https://github.com/GoogleCloudPlatform/appengine-java-vm-runtime/pull/332
@meltsufin @ludoch I would also appreciate some extra eyeballs looking closely over the lock free strategy I've employed in the patch (@sbordet also). My experience with writing lock free code...
@joakime I think this is another whatwg inspired cluster-stuffup: + The java `StandardCharsets` are all uppercase in both the constant name and their `String` names. + The [IANA registry](https://www.iana.org/assignments/character-sets/character-sets.xhtml) uses...
So to take my proposal to it's logical extreme, we should change the method in `ResourceHandler` from: ```java @Override public Request.Processor handle(Request request) throws Exception { HttpContent content = _resourceService.getContent(Request.getPathInContext(request),...
> @gregw `HttpContent` is in jetty-http module so does not have access to `Request` and `Response` classes, so it cannot have the `httpContent.process(request, response, callback)` method you propose, and it...
So thinking out loud here about how this could work if `HttpContent implements Request.Processor` (or has a signature that can be returned as a method pointer as a Processor). At...