-
Notifications
You must be signed in to change notification settings - Fork 8
Load balanced environments
David Lievrouw edited this page Jan 28, 2021
·
9 revisions
This page contains information about usage in load-balanced 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:
- You can implement the
IClientStoreandINonceStoreyourself. - You can use any of the alternatives that we support.
See Server-side storage for more information.
HttpMessageSigning | David Lievrouw