PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Caching » Cache_Lite » Bug #7618

can't save cache correctly

Details

Submitted2006-05-13 06:54 UTC
Fromneta-master at ywcafe dot net
Assignedfab
StatusClosed
PackageCache_Lite
PHP Version4.4.2
OSLinux
Roadmaps(Not assigned)

Comments

[2006-05-13 06:54 UTC] neta-master at ywcafe dot net

Description:
------------
can't save cache correctly.
test script below works with 1.6.0, but not work with 1.7.0

Test script:
---------------
require_once('Cache/Lite.php');
$options = array(
'cacheDir' => '/tmp/',
'automaticSerialization' => TRUE
);
$cacheobj = new Cache_Lite($options);
$cacheid = "testid";
$tmpar = array();
for ($i=0; $i<2; $i++) {
$ar[] = md5(mt_rand());
var_dump($cacheobj->save($ar,$cacheid));
var_dump($cacheobj->get($cacheid));
}

Expected result:
----------------
bool(true)
array(1) {
[0]=>
string(32) "ab22ddad55e328cc5419a7cceb4ffd0e"
}
bool(true)
array(2) {
[0]=>
string(32) "ab22ddad55e328cc5419a7cceb4ffd0e"
[1]=>
string(32) "e1657d470a7e8b891d6a315a934a6836"
}

Actual result:
--------------
bool(true)
array(1) {
[0]=>
string(32) "ab22ddad55e328cc5419a7cceb4ffd0e"
}
bool(false)
bool(false)

[2006-05-13 22:12 UTC] fab at php dot net

This bug has been fixed in CVS.

If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET).

If this was a problem with the pear.php.net website, the change should be live shortly.

Otherwise, the fix will appear in the package's next release.

Thank you for the report and for helping us make PEAR better.