A rate limiter in the application still costs a PHP-FPM worker per request, which means a burst of login attempts occupies the pool whether or not it is…
A package holding the shared domain model removes duplication and reintroduces exactly the coupling the split was for: a change to it requires every consumer to upgrade, which…
A maintenance task run through wp eval-file has no arguments, no help, no progress and no exit code worth checking. Registering it as a command costs about ten…
The query cache stores result sets keyed by the exact query text and invalidates every entry for a table whenever that table is written. On anything with writes,…
getRouteKeyName() changes the binding column for a model everywhere, which is wrong when the admin addresses an order by id and the customer addresses it by reference. An…
wp_schedule_event() does not check whether the hook is already scheduled, so calling it on init — which is where it usually ends up — adds another entry on…
Both arrived as “the new layout system” and they are not alternatives. Flexbox distributes space along one axis; grid places items on two at once. The rule of…
November’s release adds object as a type, which sounds like it should let a function accept “any class” and be checked. It does exactly that and nothing more.…