You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 25, 2026. It is now read-only.
Currently, the server can be accessed via an Arc<RWLock<ServerState>> inside the handlers. That is to allow the clients to change the server state.
However, it would be cleaner if clients could merely create a new server state (e.g. with an updated cache key or so) and then the server re-initializes with this state. This would get remove the annoying shared state while still allowing the clients to configure the server.