-
Notifications
You must be signed in to change notification settings - Fork 2
[#25] Creating one connection manager for all BackendEffect actions
#54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Problem: at this moment we are creating one connection manager per `BackendEffect`. This seems ridiculous. Solution: added `Member (State (Maybe Manager))` constraint in `Sem` to store only one connection manager for all `BackendEffect` actions.
…ackendEffect` actions
3217b10 to
860ce2b
Compare
|
This is a bad idea IMO, having to create a tls connection manager for every backend is less then ideal. What we need is a way for each backend to store some data as |
How so?
I didn't really understand what you meant here. What do you mean? And how is this related to connection managers? |
|
My new pass backend doesnt need a tls connection mamager, so adding a |
|
We're once again making the frontend take responsibility for things which should not be its responsibility, also such state will make it hard for #56 to work. |
|
I think I've come up with a way to do this, I'll get it done today |
Description
Problem
At this moment we are creating one connection manager per
BackendEffect.This seems ridiculous.
Solution
Added
Member (State (Maybe Manager))constraint inSemto store only oneconnection manager for all
BackendEffectactions.Related issue(s)
✅ Checklist for your Pull Request
Related changes (conditional)
silently reappearing again.
of Public Contracts policy.
and
Stylistic guide (mandatory)