PHP Shared memory Segment sample sharing

Source: Internet
Author: User

In ASP.net and Java have shared memory, PHP, in addition to the use of memcached, and other ways in fact, PHP is also supporting shared memory, the following use SHMOP to achieve this function

need to install extension SHMOP Locate the PHP installation source file directory code as follows: # cd/usr/local/php-5.4.0/ext/shmop #/usr/local/php/bin/phpize #/configure- -with-php-config=/usr/local/php/bin/php-config # make && make install compile installation successfully code as follows: # cd/usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/One more shmop.so in php.ini increase shmop.so extension= shmop.so; Module Settings; Phpinfo () output        Write data     code as follows: <?php $shmid = Shmop_open (864, ' C ', 0755, 1024); Shmop_write ($shmid, "Hello world!", 0); Phpinfo ();?>     Read data       code is as follows: <?php $shmid = Shmop_open (864, ' C ', 0755, 1024); Shmop_write ($shmid, "Hello world!", 0); Echo shmop_read ($shmid, 0, one);?>  

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.