Hiroaki Nakamura

Results 34 comments of Hiroaki Nakamura

Hi. I am also creating coroutine based libuv wrapper for lua/luajit. https://github.com/hnakamur/couv My current approach is doing yield/resume in C. Another approach I am interested in is queueing the results...

Hi, thanks for your kind comment! Actually, couv is already using queues for stream/udp reads. It has one queue per each handle. I was thinking I may change that couv...

Thanks again for your great input! It is very valuable to listen to your experience. As for timers, I am using callbacks (not using queues) to minimize delays because timing...

Ah, you are already done removing the dependency on ØMQ. Now I will study ray codebase. Thank you for your great work!

I'm inclined to write wrapper for gentleman to have the same methods as github.com/diegogub/napping. I think it's easier than replacing all occurrences of sending requests.

Thanks for your feedback! I've updated the commit message and linked the final write to the fsync. Could you take another look?

Can I ask you a question or two? I think this modification assume that the other writes will be completed before the last write will be completed. Is this assumption...

Thanks for your comment. I'd like to check to make sure I understand correctly. Though we know it's the last write we submitted, other write operations may be completed after...

Thanks for your detail explanation. I think now I understood and I've updated the commit.

I agree that getting this example absolutely right is important, because I would like to know how to use liburing correctly by looking at API docs, tests, and examples. If...