Name : perl-Proc-FastSpawn
| |
Version : 1.2
| Vendor : obs://build_opensuse_org/home:illuusio
|
Release : ill.6.65
| Date : 2024-08-28 22:24:23
|
Group : Development/Libraries/Perl
| Source RPM : perl-Proc-FastSpawn-1.2-ill.6.65.src.rpm
|
Size : 0.03 MB
| |
Packager : (none)
| |
Summary : fork+exec, or spawn, a subprocess as quickly as possible
|
Description :
The purpose of this small (in scope and footprint) module is simple: spawn a subprocess asynchronously as efficiently and/or fast as possible. Basically the same as calling fork+exec (on POSIX), but hopefully faster than those two syscalls.
Apart from fork overhead, this module also allows you to fork+exec programs when otherwise you couldn\'t - for example, when you use POSIX threads in your perl process then it generally isn\'t safe to call fork from perl, but it is safe to use this module to execute external processes.
If neither of these are problems for you, you can safely ignore this module.
So when is fork+exec not fast enough, how can you do it faster, and why would it matter?
Forking a process requires making a complete copy of a process. Even thought almost every implementation only copies page tables and not the memory itself, this is still not free. For example, on my 3.6GHz amd64 box, I can fork a 5GB process only twenty times a second. For a real-time process that must meet stricter deadlines, this is too slow. For a busy and big web server, starting CGI scripts might mean unacceptable overhead.
A workaround is to use \'vfork\' - this function isn\'t very portable, but it avoids the memory copy that \'fork\' has to do. Some systems have an optimised implementation of \'spawn\', and some systems have nothing.
This module tries to abstract these differences away.
As for what improvements to expect - on the 3.6GHz amd64 box that this module was originally developed on, a 3MB perl process (basically just perl + Proc::FastSpawn) takes 3.6s to run /bin/true 10000 times using fork+exec, and only 2.6s when using vfork+exec. In a 22MB process, the difference is already 5.0s vs 2.6s, and so on.
|
RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/home:/illuusio:/perl/openSUSE_Tumbleweed/x86_64 |