Connecting Tech Pros Worldwide Help | Site Map

Synchronization in PHP ??

Hermann
Guest
 
Posts: n/a
#1: Mar 17 '08
Does exist any form of synchronization in PHP??
Namely locks, mutexes, semaphores, monitors, etc...

Thanks in advance.
Regards.
petersprc
Guest
 
Posts: n/a
#2: Mar 17 '08

re: Synchronization in PHP ??


PHP has an interface to SysV semaphores:

http://www.php.net/manual/en/function.sem-acquire.php

flock is also available for file-based inter-process synchronization.

On Mar 16, 11:52 pm, Hermann <Hermann.Rich...@gmail.comwrote:
Quote:
Does exist any form of synchronization in PHP??
Namely locks, mutexes, semaphores, monitors, etc...
>
Thanks in advance.
Regards.
Jerry Stuckle
Guest
 
Posts: n/a
#3: Mar 17 '08

re: Synchronization in PHP ??


Hermann wrote:
Quote:
Does exist any form of synchronization in PHP??
Namely locks, mutexes, semaphores, monitors, etc...
>
Thanks in advance.
Regards.
>
What kind of synchronization are you trying to do?

In general, PHP scripts don't talk to each other like they can in other
languages. There is a limited interface, but it's system dependent. So
there are some things you *can* do in PHP, but PHP may not necessarily
be the *best* language to do them in.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

The Natural Philosopher
Guest
 
Posts: n/a
#4: Mar 17 '08

re: Synchronization in PHP ??


petersprc wrote:
Quote:
PHP has an interface to SysV semaphores:
>
http://www.php.net/manual/en/function.sem-acquire.php
>
flock is also available for file-based inter-process synchronization.
>
On Mar 16, 11:52 pm, Hermann <Hermann.Rich...@gmail.comwrote:
Quote:
>Does exist any form of synchronization in PHP??
>Namely locks, mutexes, semaphores, monitors, etc...
>>
>Thanks in advance.
>Regards.
>
and if interfacing to Mysql, there are lock facilities in that.

The Natural Philosopher
Guest
 
Posts: n/a
#5: Mar 17 '08

re: Synchronization in PHP ??


Jerry Stuckle wrote:
Quote:
Hermann wrote:
Quote:
>Does exist any form of synchronization in PHP??
>Namely locks, mutexes, semaphores, monitors, etc...
>>
>Thanks in advance.
>Regards.
>>
>
What kind of synchronization are you trying to do?
>
In general, PHP scripts don't talk to each other like they can in other
languages. There is a limited interface, but it's system dependent. So
there are some things you *can* do in PHP, but PHP may not necessarily
be the *best* language to do them in.
>
Quite.

If you have some heavy realtime interactive-across-many-web-interfaces
type problem, the better answer is to use php to do the user interface
parts, and have some core daemon written in 'C" or suchlike handling all
the interactivity bits.

And write a PHP extesnion to access it.


Hermann
Guest
 
Posts: n/a
#6: Mar 17 '08

re: Synchronization in PHP ??


Alright guys. Perfectly clear. Thank you all by your replies.

I just need to do an atomic test-and-set in a MyISAM table (a global
shared variable for the whole website).
But I think it would be better if I use a shared variable. Those that
are provided by php caching packages.
Actually, I read that eAccelerator has a lock function in its API, so
that would be perfect.
Closed Thread