资 源 简 介
the php-dbcache is a PHP extension written in C
for caching SQL queries.
It is PHP extension for mysql and using as proxy. The result of the SQL Query caching on the file system. The cache filename is md5 from SQL text. So, there is a two-level hierarchy of directories for more faster access. The php-dbcache module using mysqli connection. You can not use the caching, for INSERT or UPDATE operators.
You can get part data from cache by fetchFrame() method
Installation
```
1. cd dbcache
2. phpize
3. ./configure
4. make && make install
5. If compile error, copy all *h (header files) from php/ext/mysqli to /usr/local/includes/php/ext/mysqli
cd /tmp or /var # some directory for cache data
mkdir cache; # create directory
chown wwwrun; # the owner is user when run PHP
chmod +r cache; # add permission to write
```
### Limitations ###
* Don"t use BLOB field
* The mysqli module mu