Jonathan Hedley
Jonathan Hedley
Thanks @epochcoder. Can you help me understand the value prop here? What is the use case / do you have some examples where this is simpler than current methods? Seems...
Thanks @Skylion007. In practise, what does this actually do to HTTP requests? Are there actual local HTTP caches? From my (quick) reading, looks like this might set a Pragma: no-cache...
Thanks for the detail @Skylion007. So the verdict is that we should always force set it to "false", so that it overrides the bad default of Web Start enabling it,...
This is coming from the use of the Maven Shade plugin to create a fat jar, which copies dependencies into the these internal packages. https://github.com/snowflakedb/snowflake-jdbc/blob/master/pom.xml#L596 I was a bit surprised...
Hey @leonard84, sorry for the lack of correspondence. I need to take another look at this. Mostly from both not having used multimodule projects, or hamcrest.
I like this idea, and could be similar to the error tracking option in the HTML parser.
I think the difficulty will be in knowing upfront the expected content length of the response to parse. My understanding in practice is that if it is set, the Content...
OK yes in that use-case I think it would make sense. A pattern of a threadlocal reusable buffer would work, similar to the Builders in StringUtil.
I'm not familiar with the implementation of Jackson parser. Recyling the buffer makes sense. I don't know that it should be opt-in as I would expect most people to miss...
This could be an improvement to add to jsoup. You can set a String request body (`req.requestBody(String)`), and you can send bytes through an input stream as a multipart upload,...