60 return MediaWikiServices::getInstance()
61 ->getExternalStoreFactory()
62 ->getStore( $proto, $params );
79 return MediaWikiServices::getInstance()
80 ->getExternalStoreAccess()
81 ->fetchFromURL( $url, $params );
99 public static function insert( $url, $data, array $params = [] ) {
101 $esFactory = MediaWikiServices::getInstance()->getExternalStoreFactory();
102 $location = $esFactory->getStoreLocationFromUrl( $url );
104 return $esFactory->getStoreForUrl( $url, $params )->store( $location, $data );
120 return MediaWikiServices::getInstance()->getExternalStoreAccess()->fetchFromURLs( $urls );
136 return MediaWikiServices::getInstance()->getExternalStoreAccess()->insert( $data, $params );
153 return MediaWikiServices::getInstance()
154 ->getExternalStoreAccess()
155 ->insert( $data, $params, $tryStores );
166 return MediaWikiServices::getInstance()
167 ->getExternalStoreAccess()
168 ->insert( $data, [
'domain' => $wiki ] );
Constructor class for key/value blob data kept in external repositories.
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.