The current implementation of com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet uses two instances of ThreadLocal to wrap the HttpServletRequest and HttpServiceResponse objects. (both are not static; couldn't see any calls to remove; "this" is in the sychronized block - couple of things that triggered my suspicions).Did anybody faced similar issues?
Don't think so but it concerned me so I took a look ... seems ok but...
Every doPost it will call
if (perThreadRequest == null) { | |||||||||||||||
perThreadRequest = new ThreadLocal<HttpServletRequest>(); | |||||||||||||||
}
|
Are the 400.000 entries null and if so is that taking memory???
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
No comments:
Post a Comment