objectcache: make CachedBagOStuff implement makeKeyInternal()
authorAaron Schulz <aschulz@wikimedia.org>
Wed, 11 Jul 2018 12:41:46 +0000 (13:41 +0100)
committerAaron Schulz <aschulz@wikimedia.org>
Wed, 11 Jul 2018 12:43:28 +0000 (12:43 +0000)
Change-Id: I38821d131982d103b9d130e7310bc652f57ea696

includes/libs/objectcache/CachedBagOStuff.php

index dbab593..1f36537 100644 (file)
@@ -86,6 +86,10 @@ class CachedBagOStuff extends HashBagOStuff {
                return $this->backend->deleteObjectsExpiringBefore( $date, $progressCallback );
        }
 
+       public function makeKeyInternal( $keyspace, $args ) {
+               return $this->backend->makeKeyInternal( ...func_get_args() );
+       }
+
        public function makeKey( $class, $component = null ) {
                return $this->backend->makeKey( ...func_get_args() );
        }