-
Notifications
You must be signed in to change notification settings - Fork 286
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
Question: Support for Unix Domain Socket and example #126
Comments
What do you hope to do w/ Tower & unix domain sockets? Maybe with more info I could point you in the right direction. |
@callerche planning to implement Redis protocol interface which internally connects to remove DB. I did implement using ‘mio’ and wanted to leverage many towers modules like rate limit, reconnect, bufffer etc |
I think this might be a good case for tokio-tower (which is in progress). Thoughts @jonhoo |
As long as you have an @carllerche maybe we should publish |
The short answer is, Tower is decoupled from UDS or TCP. You would implement The easiest way to do that, as mentioned, would be And the easiest way to get a transport, is to use a codec :) (we really should have full stack docs for this).
At that point, you have your |
👍 for full stack docs! :D |
Tracking documentation with #33. |
Do we have an example of Unix domain socket support?
The text was updated successfully, but these errors were encountered: