Zaki Manian

Results 33 comments of Zaki Manian

Thinking a little about where to put concurrency in. The simplest thing I can think of is something like mioco. 1st coroutine is a loop that fetches the data. The...

I'm not sure if mioco is the right solution here. Because the file should be written to in order, you don't really want to spawn a new green thread for...

Do you think [channels](https://doc.rust-lang.org/std/sync/mpsc/fn.channel.html) will be all we need as buffers? No idea what they mean by an "infinite" buffer... I've heard vague mention about interop problems between mio and...

`sync_channel` looks good. I'm noticing that channels are multi-producer so that each mio callback can own the tx side of the channel inside the closure. I think the multi-producer ->...

I've been trying to wrap Handler::seal in a future. Struggling with type signatures.

According to Jae, IAVL tree already has Copy on Write semantics

Microtick is also interested in 1 to N channels.

Some things confuse me about the multihop use case. If the system is end to end, do I show validaty proofs in consensus for all the intermediary hops to the...

This bug doesn't appear to have any security implications so would be out of scope for the hackerone bug bounty. I'm looking into if we can potentially do a bug...

This test case passes on the latest release `v0.15` but does not pass in `master`. `master` is work in progress towards more complete protobuf compatibility.