Problem/Motivation
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.
Steps to reproduce
Proposed resolution
Remaining tasks
User interface changes
API changes
Data model changes
Issue fork redirect-3578648
Show commands
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.