|
static | batchFetchFromURLs (array $urls) |
| Fetch data from multiple URLs with a minimum of round trips.
|
|
static | defaultStoresAreReadOnly () |
|
static | fetchFromURL ( $url, array $params=[]) |
| Fetch data from given URL.
|
|
static | getStoreObject ( $proto, array $params=[]) |
| Get an external store object of the given type, with the given parameters.
|
|
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 identify the class, the rest is passed to the class itself as a parameter.
|
|
static | insertToDefault ( $data, array $params=[]) |
| Like insert() above, but does more of the work for us.
|
|
static | insertToForeignDefault ( $data, $wiki) |
|
static | insertWithFallback (array $tryStores, $data, array $params=[]) |
| Like insert() above, but does more of the work for us.
|
|
Constructor class for key/value blob data kept in external repositories.
Objects in external stores are defined by a special URL. The URL is of the form "<store protocol>://<location>/<object name>". The protocol is used to determine what ExternalStoreMedium class is used. The location identifies particular storage instances or database clusters for store class to use.
When an object is inserted into a store, the calling code uses a partial URL of the form "<store protocol>://<location>" and receives the full object URL on success. This is useful since object names can be sequential IDs, UUIDs, or hashes. Callers are not responsible for unique name generation.
External repositories might be populated by maintenance/async scripts, thus partial moving of data may be possible, as well as the possibility to have any storage format (i.e. for archives).
Definition at line 48 of file ExternalStore.php.
static ExternalStore::insertWithFallback |
( |
array | $tryStores, |
|
|
| $data, |
|
|
array | $params = [] ) |
|
static |
Like insert() above, but does more of the work for us.
This function does not need a url param, it builds it by itself. It also fails-over to the next possible clusters as provided in the first parameter.
- Parameters
-
- Returns
- string|bool The URL of the stored data item, or false on error
- Exceptions
-
Definition at line 183 of file ExternalStore.php.
References $params, list, wfDebug(), and wfDebugLog().