summaryrefslogtreecommitdiff
path: root/COPYING.ja
diff options
context:
space:
mode:
authorJean Boussier <byroot@ruby-lang.org>2023-02-16 19:36:31 +0100
committerJean Boussier <jean.boussier@gmail.com>2023-03-20 08:21:23 +0000
commit1db8951d3a8be6a756c9d3d3b87231997b301985 (patch)
tree450ed624fb3b8afc145ef2fd3e85258f64b08bf3 /COPYING.ja
parent70ea58bd5ba42b26ff39f51079af0efa422ac036 (diff)
downloadruby-1db8951d3a8be6a756c9d3d3b87231997b301985.tar.gz
Cache `Process.pid`
[Feature #19443] It's not uncommon for database client and similar network libraries to protect themselves from Process.fork by regularly checking Process.pid Until recently most libc would cache `getpid()` so this was a cheap check to make. However as of glibc version 2.25 the PID cache is removed and calls to `getpid()` always invoke the actual system call which significantly degrades the performance of existing applications. The reason glibc removed the cache is that some libraries were bypassing `fork(2)` by issuing system calls themselves, causing stale cache issues. That isn't a concern for Ruby as bypassing MRI's primitive for forking would render the VM unusable, so we can safely cache the PID.
Diffstat (limited to 'COPYING.ja')
0 files changed, 0 insertions, 0 deletions