Al Liu
Al Liu
> @al8n `try_lock` is not quite what I want because it will just return immediately on failure instead of yielding the task/future. From my point of view, it is hard...
Ah, you mean you need some methods like ```rust async fn lock_exclusive(&self) -> std::io::Result { ... } ``` If so, I think I can add those async methods in a...
`*_async` APIs are now alive in `0.10.0`.
To be honest, I am not using any async file implementation when handling file I/O, as I mentioned above, async files almost have no benefits. > a thread pool instead...
Removing those APIs seems the simplest way, and let users handle this stuff by themselves.
> @al8n I think we don’t need this anymore This is wasmer's dependency, we do not depend on it directly.
Hi! Thanks! I will work on the examples. For now, maybe you can get some ideas about how to use it from the test cases.
> Hello @al8n, Did you get anywhere with some examples / tutorials please? I am using the go implementation of serf at the moment and would like to explore the...
The example (a toy eventually consensus distributed database) will be available in the next release within 2 weeks.
Need more time to refactor the encoding/decoding, and adapt to the newest [`memberlist`](https://github.com/al8n/memberlist).