Skip to content

Load balanced environments

David Lievrouw edited this page Jan 28, 2021 · 9 revisions

This page contains information about usage in load-balanced environments.

Multi-instance environments

When configuring signature verification in multi-instance environments, you need to share the state about registered Clients and used Nonce values. By default, this data is stored in-memory. There is an InMemoryClientStore and an InMemoryNonceStore.

When working with multiple distributed instances, this data cannot be stored in memory, as this is limited to one instance.

It needs to be offloaded. You can use the alternatives as a Distributed Cache.

You have a couple of options:

See Server-side storage for more information.

Clone this wiki locally