A helpful hint, although when using shmop on windows (yes you can use shmop on windows in IIS or Apache when used as isapi/module) you can delete a segment and later open a new segment with the SAME KEY in the same script no problem, YOU CANNOT IN LINUX/UNIX - the segment will still exist - it's not immediately deleted - but will be marked for deletion and you'll get errors when trying to create the new one - just a reminder.
shmop_delete
(PHP 4 >= 4.0.4, PHP 5)
shmop_delete — Détruit un bloc de mémoire partagée
Description
bool shmop_delete
( int $shmid
)
shmop_delete() sert à détruire un bloc de mémoire partagée.
Valeurs de retour
Cette fonction retourne TRUE en cas de succès ou FALSE si une erreur survient.
Exemples
Exemple #1 Effacement d'un bloc de mémoire partagée
<?php
shmop_delete($shm_id);
?>
Ce exemple efface le bloc de mémoire partagée identifié par $shm_id.
lizzy
12-Oct-2004 07:19
slavapl at mailandnews dot com
02-May-2001 12:27
There is an important factor to keep in mind here, the shmop_delete function doesn't actually "delete" the memory segment per say, it MARKS the segment for deletion. An shm segment can not be deleted while there are processes attached to it, so a call to shm_delete will two things, first no other processes will be allowed to attach to the segment after this call, and also, it will mark the segment for deletion, which means that when all current processes mapping the segment detach (shmop_close) the system will automatically delete the segment.
So, again, the proper way to close and delete an shm segement is:
$shmid = shmop_open(...);
(do something with the block here: read, write, whatever)
shmop_delete($shmid);
shmop_close($shmid);
you must call the shmop_delete before you call shmop_close for reasons outlined above.
Also to mark a segment for deletion you must be root or the owner.
A few notes from the linux manpage on shmctl:
IPC_RMID (the flag used in shmop_delete):
is used to mark the segment as destroyed. It will actually be destroyed after the last detach. (I.e., when the shm_nattch member of the associated structure shmid_ds is zero.) The user must be the owner, creator, or the super-user.
***
The user must ensure that a segment is eventually destroyed; otherwise its pages that were faulted in will remain in memory or swap.
***
