Closed (fixed)
Project:
Redirect
Version:
8.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
11 Mar 2026 at 21:24 UTC
Updated:
22 Apr 2026 at 20:00 UTC
Jump to comment: Most recent
The prefix cache was introduced with a cache collector, but there's no need for that as we generally only expect one lookup per request, not multiple, which is what a a cache collector is useful for.
Doing specific queries means less data needs to be loaded and we can remove the limit setting entirely, it is unlikely to grow to a point where that becomes an issue.
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
berdirComment #5
berdirNow that this does possibly quite a few different cache entries and I've removed with size limit since that no longer makes sense, I decided to switch to the cache_data bin. Means we do a persistent cache lookup on every request, but it's still avoids the dynamic redirect lookup on many cases.
Merged.