Joakim Erdfelt
Joakim Erdfelt
Logging events produced by the webapp wont use the server logging layer. Having the server dive into the webapp, grab some configuration, and configure the server is no big deal,...
See Issue #289 for proposed change to the JSON format to suit the multiple logger world we live in now.
Jasper uses `java.util.logging`, we could setup either side of the slf4j bindings for jul (either capture or appending) to allow the configuration levels to be controlled in a single place.
These 3 warnings come from Apache Jasper. * https://github.com/apache/tomcat/blob/10.1.20/java/org/apache/tomcat/util/descriptor/LocalStrings.properties#L16 * https://github.com/apache/tomcat/blob/10.1.20/java/org/apache/tomcat/util/descriptor/DigesterFactory.java#L180 This is because Jasper expects things for XML to appear in a specific directory location on the servlet-api jar,...
Basing anything off `sun.misc.Unsafe` behavior is not a good idea anymore. It has been deprecated since 2006. There are 2 active JEPs that are almost done with their implementations and...
Performance wise, Unsafe no longer wins. Eclipse Jetty removed Unsafe a few year ago, and the various performance metrics has improved.
500K+ requests per second is not hard to do. You have to be mindful of network saturation in regards to request/response size and optional http details. This has been done...
> https://medium.com/deno-the-complete-reference/netty-vs-jetty-hello-world-performance-e9ce990a9294 An unconfigured Jetty and testing on the same machine, that person just tested the performance of their localhost network stack, nothing else. That is a horrible set of...
> I am the developer of the `Memcarrot` - memcached-compatible caching server, written in Java with a heavy dosage of `sun.misc.Unsafe`. All memory management is manual (malloc(), free()). The server...
Go with all lowercase. (this should apply to mime-types too) From https://datatracker.ietf.org/doc/html/rfc9110#section-8.3.1 ``` For example, the following media types are equivalent in describing HTML text data encoded in the UTF-8...