Darren Whitlen wrote:
Hi,
I have a PHP script that reads and updates either a small file or a mysql database. This script is called from several places every .5 seconds.

I would like to move this file to a variable for extra speed as the file is causing a few problems being accessed so many times. Is it possible to have a writeable variable that has the scope of EVERY script that is run through the parser?

Thanks,
Darren


check this

http://pecl.php.net/package/memcache


also if the scripts are associated with each other you could check out using a singleton pattern (http://www.google.com/search?q=php5+singleton&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a)

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to