tags:

views:

41

answers:

2

Hi, How To Cached My php Index Page to (/cache) folder for Faster Worked? What is methos is very fast ?

A: 

You may find interesting the follow links

PHP accelerator

List of PHP accelerators

Sotiris
A: 

Fastest method is to cache on the client. After that the different methods will yield variable results depending on the nature of the application and the network. But without any more information its impossible to tell.

You might try:

  • checking for effective caching of static content
  • eliminating performance bottlenecks from your code
  • using a template system
  • using a caching reverse proxy
  • caching output using php code
  • using an opcode cache

What have you tried? What analysis of the system have you done? What are the constraints?

Not a very meaningful question.

C.

symcbean