Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve introspection cache #567

Merged
merged 8 commits into from
Aug 27, 2024

Commits on Aug 26, 2024

  1. Configuration menu
    Copy the full SHA
    418e328 View commit details
    Browse the repository at this point in the history
  2. feat(introspection_cache): remove custom role generic to make compati…

    …ble with caches
    
    Using a role generic was incompatible with the type erasure
    of the introspection cache.
    Judging from the discussion in smartive#550
    the original intention was to introduce a convenience feature, for library users.
    However, the same behaviour can be easily achieved by a simple extention trait,
    and does not need to be support by this crate itself to achieve the same convenience.
    As a result, the generic role type parameter is removed.
    sprudel committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    2762bf1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    16585c2 View commit details
    Browse the repository at this point in the history
  4. feat(introspection_cache): use cache optimized for concurrent load

    * don't lock on every request
    * use a ttl expiry for better token security
    sprudel committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    8e0f2a6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d22658a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c16b470 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    664fc32 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2024

  1. Configuration menu
    Copy the full SHA
    a3e9020 View commit details
    Browse the repository at this point in the history