Mercurial > hg > orthanc-book
comparison Sphinx/source/plugins/python.rst @ 471:a735476a0e6e
note about fork on windows
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 04 Aug 2020 20:53:18 +0200 |
parents | fcc352fd4283 |
children | 03dfb896ca4b |
comparison
equal
deleted
inserted
replaced
467:b8c7519448d2 | 471:a735476a0e6e |
---|---|
565 | 565 |
566 | 566 |
567 Performance and concurrency | 567 Performance and concurrency |
568 --------------------------- | 568 --------------------------- |
569 | 569 |
570 **Important:** This section only applies to UNIX-like systems. The | |
571 ``multiprocessing`` package will not work on Microsoft Windows as the | |
572 latter OS has a different model for `forking processes | |
573 <https://en.wikipedia.org/wiki/Fork_(system_call)>`__. | |
574 | |
570 .. highlight:: python | 575 .. highlight:: python |
571 | 576 |
572 Let us consider the following sample Python script that makes a | 577 Let us consider the following sample Python script that makes a |
573 CPU-intensive computation on a REST callback:: | 578 CPU-intensive computation on a REST callback:: |
574 | 579 |