Opened 4 years ago
Closed 3 years ago
#10698 closed defect (bug) (fixed)
Reduce memory usage for XML-RPC requests
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 2.9 |
| Component: | XML-RPC | Version: | |
| Severity: | normal | Keywords: | has-patch |
| Cc: | josephscott |
Description
Demitrious Kelly did some excellent work in reducing the memory usage for processing large XML-RPC requests on WordPress.com. I'm including a patch of his work on wp-includes/class-IXR.php that does the following:
- Pass references instead of copies of the full XML-RPC request
- Limit the XML declaration stripping to the first 100 characters of the data
- Parse the XML in chunks so that the whole thing doesn't get slurped into memory
Attachments (1)
Note: See
TracTickets for help on using
tickets.

(In [12263]) Reduce memory usage for XML-RPC requests. Props Demitrious Kelly. fixes #10698