38 return MediaWikiServices::getInstance()
39 ->getExternalStoreFactory()
40 ->getStore( $proto, $params );
57 return MediaWikiServices::getInstance()
58 ->getExternalStoreAccess()
59 ->fetchFromURL( $url, $params );
77 public static function insert( $url, $data, array $params = [] ) {
79 $esFactory = MediaWikiServices::getInstance()->getExternalStoreFactory();
80 $location = $esFactory->getStoreLocationFromUrl( $url );
82 return $esFactory->getStoreForUrl( $url, $params )->store( $location, $data );
98 return MediaWikiServices::getInstance()->getExternalStoreAccess()->fetchFromURLs( $urls );
114 return MediaWikiServices::getInstance()->getExternalStoreAccess()->insert( $data, $params );
131 return MediaWikiServices::getInstance()
132 ->getExternalStoreAccess()
133 ->insert( $data, $params, $tryStores );
144 return MediaWikiServices::getInstance()
145 ->getExternalStoreAccess()
146 ->insert( $data, [
'domain' => $wiki ] );
static insertWithFallback(array $tryStores, $data, array $params=[])
Like insert() above, but does more of the work for us.
static fetchFromURL( $url, array $params=[])
Fetch data from given URL.
static insert( $url, $data, array $params=[])
Store a data item to an external store, identified by a partial URL The protocol part is used to iden...
static batchFetchFromURLs(array $urls)
Fetch data from multiple URLs with a minimum of round trips.
static insertToDefault( $data, array $params=[])
Like insert() above, but does more of the work for us.
static insertToForeignDefault( $data, $wiki)
static getStoreObject( $proto, array $params=[])
Get an external store object of the given type, with the given parameters.