Re: [PHP] Shared variable / exclusive locking?

2005-03-09 Thread the_roibm
ok, so the solution is shm or shmop, but there is something I'm not sure about it... the way I wanna go is shm and sem and the things that are clear are: - use sem to block multiple processes(or threads) writing to the same shm block - there is no need to use sem for reading since multiple

[PHP] Shared variable

2005-02-09 Thread Mario Stiffel
Hello. Is there any oppertunity to create varaibles that can accessed by more than one instances? I need a way to communicate between many php-instances. It can be, that they are not active to the same time. Is there any way without using a file or a database? Mario -- PHP General Mailing List

RE: [PHP] Shared variable

2005-02-09 Thread Jay Blanchard
[snip] Is there any oppertunity to create varaibles that can accessed by more than one instances? I need a way to communicate between many php-instances. It can be, that they are not active to the same time. Is there any way without using a file or a database? [/snip] No, in this case you must

Re: [PHP] Shared variable

2005-02-09 Thread Bostjan Skufca @ domenca.com
SHM On Wednesday 09 February 2005 14:51, Mario Stiffel wrote: Hello. Is there any oppertunity to create varaibles that can accessed by more than one instances? I need a way to communicate between many php-instances. It can be, that they are not active to the same time. Is there any way

Re: [PHP] Shared variable

2005-02-09 Thread Richard Lynch
Mario Stiffel wrote: Is there any oppertunity to create varaibles that can accessed by more than one instances? I need a way to communicate between many php-instances. It can be, that they are not active to the same time. Is there any way without using a file or a database?