X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Flibs%2Fobjectcache%2FReplicatedBagOStuff.php;h=3bc7ae2a8c564515438970a56256453bcb4a2730;hb=bae9c5aca69c62ff8ae32956a082c0787cb06b73;hp=5f2c509ed66ba2d413326e8b665b17d0ba86f329;hpb=e5facc46bc170c302438f60849041b0d6be75e82;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/libs/objectcache/ReplicatedBagOStuff.php b/includes/libs/objectcache/ReplicatedBagOStuff.php index 5f2c509ed6..3bc7ae2a8c 100644 --- a/includes/libs/objectcache/ReplicatedBagOStuff.php +++ b/includes/libs/objectcache/ReplicatedBagOStuff.php @@ -22,7 +22,7 @@ /** * A cache class that directs writes to one set of servers and reads to - * another. This assumes that the servers used for reads are setup to slave + * another. This assumes that the servers used for reads are setup to replica DB * those that writes go to. This can easily be used with redis for example. * * In the WAN scenario (e.g. multi-datacenter case), this is useful when @@ -42,7 +42,7 @@ class ReplicatedBagOStuff extends BagOStuff { * - writeFactory : ObjectFactory::getObjectFromSpec array yeilding BagOStuff. * This object will be used for writes (e.g. the master DB). * - readFactory : ObjectFactory::getObjectFromSpec array yeilding BagOStuff. - * This object will be used for reads (e.g. a slave DB). + * This object will be used for reads (e.g. a replica DB). * * @param array $params * @throws InvalidArgumentException @@ -59,12 +59,14 @@ class ReplicatedBagOStuff extends BagOStuff { __METHOD__ . ': the "readFactory" parameter is required' ); } + $opts = [ 'reportDupes' => false ]; // redundant $this->writeStore = ( $params['writeFactory'] instanceof BagOStuff ) ? $params['writeFactory'] - : ObjectFactory::getObjectFromSpec( $params['writeFactory'] ); + : ObjectFactory::getObjectFromSpec( $opts + $params['writeFactory'] ); $this->readStore = ( $params['readFactory'] instanceof BagOStuff ) ? $params['readFactory'] - : ObjectFactory::getObjectFromSpec( $params['readFactory'] ); + : ObjectFactory::getObjectFromSpec( $opts + $params['readFactory'] ); + $this->attrMap = $this->mergeFlagMaps( [ $this->readStore, $this->writeStore ] ); } public function setDebug( $debug ) {