Archive

Posts Tagged ‘Cache’

WinCache 1.0 – Windows Cache Extension for PHP

Sep 6th, 2009

WinCache 1.0 for PHP 5.2 and 5.3 is a PHP accelerator that aims to increase PHP applications speed running on windows platform. WinCache extension doesn’t require any code change. WinCache can cache PHP Opcode, PHP scripts, and can cache relative File Path information. It has provided many configuration options from php.ini.
More on WinCache

How does an Accelerator works?

May 28th, 2007

If you are not familiar about accelerator then read this article on Web Caching first.
Executing a PHP scripts needs few steps:
1. PHP loads the file.2. It parses the source file, and transforms it into opcode (code that can be executed by the server),3. It executes the opcode.
The accelerator takes the opcodes from step-2 and caches [...]

Web Caching

May 15th, 2007

Web Caching is the caching of data in temporary memory or permanent memory so that we do not have to execute same code over some period of time. Here time period will depend upon how frequently your content change.
Many content we send to client do not change every minute. Here we can save our various [...]

Various Issues, Tips and Methods

Oct 1st, 2005

Create/maintain blocks of code
Use less number of tables
Height and Width in img tags
Initialize all variables
Comments in HTML and PHP
Check/Validate HTML
Separate files for CSS and Javascript also
Know your editor
Know your surrounding
Submitting an array to PHP from HTML
CSS: Table less design
Simple Design using table
Get X and Y coordinate of an element in a HTML document
Read sql data from a large file/csv file at very high speed
Encode data before saving data in table
Converting string to array and array to string in PHP: explode and implode
Dynamic Variables in PHP (Variable varaible)