Commit d3702906 authored by David Wilson's avatar David Wilson

docs: one more warning

parent 03e08e25
...@@ -544,8 +544,14 @@ Router Class ...@@ -544,8 +544,14 @@ Router Class
* third party package state (such as urllib3's HTTP connection pool) * third party package state (such as urllib3's HTTP connection pool)
attempting to write to file descriptors shared with the parent. attempting to write to file descriptors shared with the parent.
* memory mappings for large files that cannot have their space freed on * memory mappings for large files that cannot have their space freed on
disk due to the mapping living on in the child. 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 * thread locks held in the parent producing random deadlocks in the
child. child.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment