Michael Murphy

Results 361 comments of Michael Murphy

@ole-tange Not able to decrypt your message. I don't have any of the keys you used.

@ole-tange That would be `2A8CB607A1D3332C18E86652B2732D4240C9212C`, though I could probably tell you right now what the problem is by taking a quick ripgrep through this project for the `unsafe` keyword.

Try http://keyserver.ubuntu.com, it's on there.

You may be using a Linux distribution with transparent_hugepages set to always, instead of madvise. On Tue, Aug 1, 2017, 9:44 AM Jacek Wielemborek wrote: > d33tah@d33tah-pc:/tmp$ cat /tmp/test.sh >...

I'll have to investigate this when I have time to put on this project. I'm still heavily engaged in Ion Shell development, which takes priority over this. I believe this...

@amosbird It's because THP has an issue where it majorly ruins memory-related performance when a binary is using jemalloc. Especially so when that program performs a lot of forks, such...

So I have a new project -- [concurr](https://github.com/mmstick/concurr). Still in it's early stages, but it has a service (`concurr-jobsd`) and associated client for controlling nodes with that service running (`concurr`)....

Linux -- as of 5.3 -- supports a ["pidfd"](https://lwn.net/Articles/794707/) concept, which would eliminate the need for creating pipes between processes. Unlike a traditional PID, a PID fd is guaranteed to...

Related: [mio-pidfd](https://github.com/samuelbrian/mio-pidfd)

I can work on this. It's critical for the kind of work that I do on the Linux desktop. I've been stuck with using tokio for all of our software...