wiki.techinc.nl/includes/objectcache
Matthias Mullie 63b22fe634 Cached misses in getMulti should be omitted
SqlBagOStuff::getMulti currently returns an array with false values for missed
cache keys.
Default BagOStuff::getMulti (and other specific implementations like memcached),
however, just omit missed values.

e.g.:

    $cache->getMulti( array( 'goodkey' 'badkey' ) );

should return

    array( 'goodkey' => 'value' );

instead of

    array( 'goodkey' => 'value', 'badkey' => false );

Bug: 65637
Change-Id: Ib2de06a0f76421094707f7ad4218346087f4dc55
2014-05-22 17:19:22 +02:00
..
APCBagOStuff.php docs: closure -> Closure; callback -> callable 2014-04-19 08:43:31 +02:00
BagOStuff.php Add BagOStuff::setMulti for batch insertions 2014-04-25 15:12:22 -07:00
EmptyBagOStuff.php docs: closure -> Closure; callback -> callable 2014-04-19 08:43:31 +02:00
HashBagOStuff.php Pass phpcs-strict on includes/objectcache/ 2014-05-11 16:52:18 +00:00
MemcachedBagOStuff.php Fixed some @params documentation (includes/[cache|objectcache]) 2014-04-19 01:19:46 +02:00
MemcachedClient.php Pass phpcs-strict on includes/objectcache/ 2014-05-11 16:52:18 +00:00
MemcachedPeclBagOStuff.php Add BagOStuff::setMulti for batch insertions 2014-04-25 15:12:22 -07:00
MemcachedPhpBagOStuff.php Fixed some @params documentation (includes/[cache|objectcache]) 2014-04-19 01:19:46 +02:00
MultiWriteBagOStuff.php Pass phpcs-strict on includes/objectcache/ 2014-05-11 16:52:18 +00:00
ObjectCache.php Pass phpcs-strict on includes/objectcache/ 2014-05-11 16:52:18 +00:00
ObjectCacheSessionHandler.php Fixed some @params documentation (includes/[cache|objectcache]) 2014-04-19 01:19:46 +02:00
RedisBagOStuff.php Add BagOStuff::setMulti for batch insertions 2014-04-25 15:12:22 -07:00
SqlBagOStuff.php Cached misses in getMulti should be omitted 2014-05-22 17:19:22 +02:00
WinCacheBagOStuff.php Fixed some @params documentation (includes/[cache|objectcache]) 2014-04-19 01:19:46 +02:00
XCacheBagOStuff.php Follow-Ups to "Fixed some @params documentation" 2014-04-23 13:39:49 +02:00