Different cache bin for tokens

Created on 25 September 2023, over 1 year ago
Updated 24 April 2024, 12 months ago

Problem/Motivation

The Tokens module stores cache in the cache_data bin, which is also utilized by many other modules. Currently, my site has 13 token cache items, while the cache_data bin contains 32,000+ items. Consequently, I need to transfer the tokens cache to the database.

Steps to reproduce

Proposed resolution

I believe that implementing a separate cache bin for tokens would provide the capability to override the cache location without modifying the remaining 32,000+ items.

Remaining tasks

  • Review PR

User interface changes

N/A

API changes

N/A

Data model changes

N/A

📌 Task
Status

Closed: won't fix

Version

1.0

Component

Code

Created by

🇯🇴Jordan abu-zakham

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @abu-zakham
  • Issue was unassigned.
  • Status changed to Needs review over 1 year ago
  • Open in Jenkins → Open on Drupal.org →
    Core: 9.5.x + Environment: PHP 7.3 & MariaDB 10.3.22
    last update over 1 year ago
    77 pass
  • Status changed to Needs work over 1 year ago
  • 🇨🇭Switzerland berdir Switzerland

    Using custom module cache bins is discouraged, I don't understand why this is needed. There are only few token cache bins but they can be very large, so it's not a good fit for something like cache_bootstrap.

  • Status changed to Needs review over 1 year ago
  • 🇯🇴Jordan abu-zakham

    Custom bins allow for fine-grained control over caching for a module's data, ensuring optimal performance and minimal cache conflicts.

    Benefits of custom cache bins include isolation, allowing for the separation of cached data related to a module from other modules, and control over how data is cached, retrieved, and invalidated. Custom cache bins also allow for optimization of caching for a module's specific use cases, improving performance.

    When implementing a custom cache bin, it's important to consider factors such as cache granularity, data validity, and cache-clearing strategies. Custom cache bins are a powerful tool for fine-tuning caching mechanisms in Drupal.

  • First commit to issue fork.
  • Open in Jenkins → Open on Drupal.org →
    Core: 10.1.4 + Environment: PHP 8.1 & MariaDB 10.3.22
    last update 12 months ago
    78 pass
  • Pipeline finished with Success
    12 months ago
    Total: 258s
    #155744
  • Status changed to Closed: won't fix 12 months ago
  • 🇨🇭Switzerland berdir Switzerland

    #7 sounds like a ChatGPT explanation to me.

    There is no need to have a cache bin for every little bin, Drupal 8+ optimized for fewer, semantic cache bins instead of basically having one for every module.

    Also, this is just the tree cache, which is only used when displaying token UI, the actual tokens are cached in cache_default and that's defined in core.

Production build 0.71.5 2024