mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-16 04:48:04 +00:00
4eaa3163b6
# Which Problems Are Solved We identified the need of caching. Currently we have a number of places where we use different ways of caching, like go maps or LRU. We might also want shared chaches in the future, like Redis-based or in special SQL tables. # How the Problems Are Solved Define a generic Cache interface which allows different implementations. - A noop implementation is provided and enabled as. - An implementation using go maps is provided - disabled in defaults.yaml - enabled in integration tests - Authz middleware instance objects are cached using the interface. # Additional Changes - Enabled integration test command raceflag - Fix a race condition in the limits integration test client - Fix a number of flaky integration tests. (Because zitadel is super fast now!) 🎸 🚀 # Additional Context Related to https://github.com/zitadel/zitadel/issues/8648 |
||
---|---|---|
.. | ||
integration_test | ||
access_token.go | ||
amr_test.go | ||
amr.go | ||
auth_request_converter_test.go | ||
auth_request_converter_v2.go | ||
auth_request_converter.go | ||
auth_request.go | ||
client_converter.go | ||
client_credentials.go | ||
client.go | ||
device_auth.go | ||
error_test.go | ||
error.go | ||
introspect.go | ||
jwt-profile.go | ||
key_test.go | ||
key.go | ||
op.go | ||
server_test.go | ||
server.go | ||
token_client_credentials.go | ||
token_code.go | ||
token_device.go | ||
token_exchange_converter.go | ||
token_exchange.go | ||
token_jwt_profile.go | ||
token_refresh.go | ||
token.go | ||
userinfo_test.go | ||
userinfo.go |