Lorenz Bauer

Results 302 comments of Lorenz Bauer

I've attempted to read Portfolio.xml from Go to do some analysis, here are my 2c: * The use of XPath in the XML to refer to securities makes it hard...

I would probably just use a buffered channel. You won't be able to implement faster acquire / release, and draining the pool is relatively straightforward. Users will have to specify...

Hi Bryan, It seems to me that you are mostly considering write speed for this issue. I have a use case that I think could benefit from INTEGERKEY on the...

I don't have code unfortunately, still thinking about the whole issue. Found this from hyc: https://gist.github.com/hyc/9810a14488c71e58038c (note that INTEGERKEY has only 31 of N keys found, not sure what's going...

Sorry for the late reply, do you have a high level description what the new API would look like? It's quite fiddly to go through all the commits.

I'm currently looking at using raven-go, and this same thing struck me. Is there any reason why this wouldn't work? Happy to contribute a PR to add something like `func...

@mattrobenolt what do you think (I'm assuming you're the maintainer)?

I think this would be useful to run double forking processes under tini. Seems like tini exits as soon as the first child dies at the moment. It would be...

Running in a docker container is not something we do, so this is basically unsupported. At a minimum you'd have to mount /sys/fs/bpf, and probably make it a privileged container...

Hello! This is BPF_FS_MAGIC on arm: ``` $ GOARCH=arm go doc golang.org/x/sys/unix.BPF_FS_MAGIC | grep BPF_FS BPF_FS_MAGIC = 0xcafe4a11 ``` Statfs_t.Type is int32 it seems: ``` $ GOARCH=arm go doc golang.org/x/sys/unix.Statfs_t...