A recent project, which has a relatively large form, it requires users to complete a lot of time, many users have spent untold hardships after the completion of a submission was found SESSION expired, the system quit, it has led the research, as well as how to set SESSION the need to maintain...
Source: http://php-fpm.anight.org/
wiki: http://www.php-fpm.com/
PHP-FPM not only makes configuration of FastCGI pools, but also enhances some of the FastCGI internals and increases error reporting, script terminiation, etc.
This table has a simple comparison between the most popular methods...
A comparison between the #5 language and the #1 framework (ranked lovability by me!).
When it comes to programming, more specifically the development of web applications, it is important to consider all the tools of the trade before using the one that is going to be used for the job.
For some...
Since i’ve started programming in PHP i’ve found that there are some very interesting and useful functions native to the language that are buried deep in the very extensive PHP documentation. Sometimes you want to do something with your code and you end up writing lines and lines of elaborate...
From the PHP5.1 start, PHP provides the users of Zend VM implementation of the choice of interface distribution methods.
Zend in the implementation of the virtual machine, when compiling the generated op_array for each one opline the opcode will be distributed to the appropriate processor...
In the last article, I talked about the importance of building concurrent code (whether it's in Scala or not) and some of the problems and issues facing developers in doing so, including not locking too much, not locking too little, avoiding deadlocks, avoiding spinning up too many threads, and so...
Posted under Article, PHP on Wednesday, 26 August 2009 by Jack
Here are some methods may help you to improve php the performance
1: object code cache
Each request need to recompile the object code, if you use the cache, then may avoided, so that you can make your php program to get faster.
The following programs can use:
A) Ioncube:...