# `Ltix.JWT.KeySet.CachexCache`
[🔗](https://github.com/DecoyLex/ltix/blob/main/lib/ltix/jwt/key_set/cachex_cache.ex#L2)

Cachex-backed cache for JWKS key sets.

Requires a Cachex cache to be started in your supervision tree:

    # In your application.ex
    children = [
      {Cachex, name: :ltix_jwks}
    ]

The cache name defaults to `:ltix_jwks` and can be configured:

    config :ltix, :cachex_cache_name, :my_jwks_cache

Then set this module as the JWKS cache:

    config :ltix, :jwks_cache, Ltix.JWT.KeySet.CachexCache

---

*Consult [api-reference.md](api-reference.md) for complete listing*
