dqminh / bb8-memcached

MIT License
4 stars 10 forks source link

Usage of UnixStream lead to built failed on windows #11

Open Xuanwo opened 1 year ago

Xuanwo commented 1 year ago

Hi, bb8-memcached will use tokio::net::UnixStream which not provided under windows. This will break the built on windows.

For example: https://github.com/mozilla/sccache/actions/runs/3868518082/jobs/6594014421

nemasu commented 6 days ago

I'm running into this problem, is there a work around?

Xuanwo commented 6 days ago

I'm running into this problem, is there a work around?

Hi, I rewrote the Memcache client: https://github.com/apache/opendal/blob/main/core/src/services/memcached/binary.rs

Feel free to try OpenDAL if it suits your needs.

nemasu commented 6 days ago

Thanks @Xuanwo , I just forked it and fixed the build, but I might look at that later. 👍