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
Currently postgres is in the hot path of handling user requests. This will not scale and should be refactored.
A potential idea is to precompile a regex using regex-automata whenever the deployments for a particular host change and store that in the blob storage.
Whenever the gateway handles a user requests this precompiled regex could be fetched from the blob storage and used to identify which of the routes for a particular host matches the request.
The text was updated successfully, but these errors were encountered:
Currently postgres is in the hot path of handling user requests. This will not scale and should be refactored.
A potential idea is to precompile a regex using regex-automata whenever the deployments for a particular host change and store that in the blob storage.
Whenever the gateway handles a user requests this precompiled regex could be fetched from the blob storage and used to identify which of the routes for a particular host matches the request.
The text was updated successfully, but these errors were encountered: