vote up 0 vote down star
1

How to use Query cache with ADOdb in PHP? Is it default in ADOdb or Is there any configuration needed ?

flag

78% accept rate

1 Answer

vote up 2 vote down check

Set the cache directory, e.g.

$GLOBALS['ADODB_CACHE_DIR']=$_SERVER['DOCUMENT_ROOT'].'/../cache/adodb';

Now you can use the Cache* methods like CacheGetOne to get a cached result

$data = $rs->CacheGetOne($seconds_to_cache, $sql);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.