Merge from vendor branch pkgsrc-base:
[pkgsrcv2.git] / devel / php-shmop / DESCR
1 PHP is a programming language designed to be embedded into web pages.
2
3 Shmop is an easy to use set of functions that allows PHP to read,
4 write, create and delete Unix SysV-style shared memory segments.
5
6 While developing a search deamon we needed a php based front end
7 to communicate the deamon via SHM. PHP already had a shared memory
8 extention (sysvshm) written by Christian Cartus <cartus@atrior.de>,
9 unfortunatly this extention was designed with PHP only in mind and
10 offers high level features which are extremly bothersome for basic
11 SHM we had in mind.  After spending a day trying to reverse engineer
12 and figure out the format of sysvshm we decided that it would be
13 much easier to add our own extention to php for simple SHM operations,
14 we were right :)).