Skip to content

Commit 7836f07

Browse files
authored
Merge pull request #10 from alleyinteractive/feature/expand-readme
Add more details to README
2 parents 024844a + 9cd1323 commit 7836f07

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

README.md

+23-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,35 @@ A safety net for WordPress sites that depend on server-side remote requests.
55

66
## Overview
77

8-
This plugin will cache all remote requests that happen on a WordPress site. Should a remote resource become unavailable, the most recently-cached response will be served until the resource becomes available again, providing three distinct advantages:
8+
This plugin will cache remote requests that happen on a WordPress site. Should a remote resource become unavailable, the most recently-cached response will be served until the resource becomes available again, providing three distinct advantages:
99

1010
1. When a site depends on an external resource to operate, and that resource becomes unavailable (especially in cases leading to long request times), that can lead to the site going down as well.
1111
2. When a resource is down, we can help it resume normal functioning faster by reducing the amount of load put on it during a time of stress.
1212
3. By serving the last good response for a resource, we mitigate the effect that this has on the end user. With this plugin, it's entirely possible that a resource may go down and later come back and the end user is none the wiser.
1313

14+
## Features
15+
16+
### Safe Defaults
17+
18+
Out of the box, only GET requests are cached, as it's assumed that other methods like POST, PUT, and DELETE are changing data. This behavior can be modified on a request-by-request basis using the `remote_backstop_should_intercept_request` filter. Requests are cached using the URL and any request arguments such as the request body, so any POST requests that don't change data would be safe to backstop using this plugin.
19+
20+
### Throttling
21+
22+
To reduce load on the troubled external resource, as well as impact on the current WordPress site, when the resource is determined to be "down", requests will be throttled to it for some period of time, the default for which is one minute. Requests can be scoped to different levels of granularity, either at the "host", "url", or "request" level, in determining if the resource should be considered "down" during this throttling period. By default, all requests are scoped at the "host" level, meaning if the host is `example.com`, no requests to `example.com` will be attempted until the throttle period expires regardless of the URI or other request arguments. If the scope is set to "url", then requests to `example.com/foo` will be throttled separately from `example.com/bar`. Requests scoped at the "request" level will checksum the entire request, including the body and headers (but not cookies). All of the above behavior is configurable using the `remote_backstop_request_options` filter.
23+
24+
### Logging
25+
26+
The plugin maintains a log of the last 50 events where it intervened. This log is presently only accessible by going directly to the object cache. To view the log using WP-CLI, one could call `wp cache get remote_backstop_log rb_down_log` or `wp shell` then execute `Remote_Backstop\Event_Log::get_log()`.
27+
28+
### Flexibility
29+
30+
Most of the plugin's functionality is easily manipulable using the provided filters. Beyond that, the `remote_backstop_request_manager()` function will return the `Request_Manager` object that orchestrates the plugin's functionality, and this object allows developers to replace wholesale components. For instance, if a developer did not want request data cached to the object cache and instead stored in a custom MySQL table, they could replace the cache factory that the `Request_Manager` uses with a custom service that changes that behavior.
31+
1432
## Caveats
1533

1634
* Cookies are not cached with the remote response.
17-
* This plugin **requires** an external object cache (e.g. memcached, redis).
35+
* By default, this plugin **requires** a persistent object cache (e.g. memcached, redis).
36+
* Any backstopped request (that is, any request which this plugin intercepts) is forced to have a maximum timeout of 3 seconds.
1837

1938
## Customizations
2039

@@ -26,7 +45,7 @@ This plugin will cache all remote requests that happen on a WordPress site. Shou
2645
Options for handling this request in backstop.
2746
2847
@type string $scope_for_availability_check What scope to consider when considering
29-
a resource as "down".
48+
a resource as "down". Defaults to 'host'.
3049
@type bool $attempt_uncached_request_when_down Option of running a request for which
3150
there is no cache, even though the
3251
resource is down. Should the request
@@ -54,7 +73,7 @@ By default, a response is an error if it is a WP_Error object or if the response
5473
@param bool $is_error Was this response an error?
5574
@param array|\WP_Error $response Response.
5675
```
57-
* `'remote_backstop_should_intercept_request'`: Filters request specifics to determine whether or not a request should be intercepted.
76+
* `remote_backstop_should_intercept_request`: Filters request specifics to determine whether or not a request should be intercepted.
5877
```
5978
@param bool Should this request be intercepted?
6079
Defaults to true for GET requests.

0 commit comments

Comments
 (0)