Update notes

This commit is contained in:
2018-01-22 23:24:39 +02:00
parent 88e124859a
commit a638cba77d
42 changed files with 52 additions and 48 deletions

View File

@ -997,4 +997,6 @@ $ ./rest-find-collections.py 10568/1 | grep -i untitled
- Looking at the [Tomcat connector docs](https://tomcat.apache.org/tomcat-7.0-doc/config/http.html) I think we really need to increase `maxThreads`
- The default is 200, which can easily be taken up by bots considering that Google and Bing each browse with fifty (50) connections each sometimes!
- Before I increase this I want to see if I can measure and graph this, and then benchmark
- I'll probably also increase `minSpareThreads` to 20 (its default is 10)
- I still want to bump up `acceptorThreadCount` from 1 to 2 as well, as the documentation says this should be increased on multi-core systems
- I spent quite a bit of time looking at `jvisualvm` and `jconsole` today