On Feb 18, 2:58 pm, John Nagle <[email protected]> wrote: > Multiple processes are not the answer. That means loading multiple > copies of the same code into different areas of memory. The cache > miss rate goes up accordingly.
A decent OS will use copy-on-write with forked processes, which should carry through to the cache for the code. -- http://mail.python.org/mailman/listinfo/python-list
