AEM Site 404 performance issue
I had ran a load test for 404 response on a 8 core 16GB AEM publish instance.
The request urls are something like https://www.myhost.com/content/abc/${__Random(1,1000000)}/,
and the response is set in /apps/sling/servlet/errorhandler/404.jsp:
<%
response.setStatus(404);
response.setContentType("text/html");
response.getWriter().write("<h1>Not Found</h1> <p>The requested URL was not found on this server.</p>");
%>
AEM can handle about 700 requests/second, which seems quite low for this simple scenario.
Does anybody konw how to improve the 404 throughtout for AEM instance?