Skip to content

Tag Archives: ipc

Using shared memory in PHP

PHP provides a handy support for System V IPC functions in the Semaphore module. Let’s have a look at the functions responsible for handling shared memory. They can be used to implement a simple way of exchanging information between the processes. To see if your PHP installation supports IPC, run: % php -i | grep [...]