docs: one more warning

This commit is contained in:
David Wilson 2018-03-24 22:15:24 +05:45
parent 03e08e25fd
commit d370290687
1 changed files with 6 additions and 0 deletions

View File

@ -544,8 +544,14 @@ Router Class
* third party package state (such as urllib3's HTTP connection pool)
attempting to write to file descriptors shared with the parent.
* memory mappings for large files that cannot have their space freed on
disk due to the mapping living on in the child.
* Difficult to diagnose memory usage spikes due to large object graphs
present in the parent being unreferenced in the child, causing
immediate copy-on-write to large portions of the process heap.
* thread locks held in the parent producing random deadlocks in the
child.