Yannick Koechlin
Yannick Koechlin
@donglei for your specific need you don't need multi thread, it would be actually bad. Linux can do the connection sharding for you with SO_REUSEPORT ( https://lwn.net/Articles/542629/ ). you do...
the main use case i saw was dependencies with different versions. say you work on two projects, website A and B. a depends on vibe.d ~master and B depends on...
its already fairly simple: https://github.com/yannick/requests-asdf-example/blob/master/source/app.d ``` string endpoint = "https://api.github.com/search/repositories?order=desc&sort=updated&q=language:D"; Item[] items = getContent(endpoint).to!string.parseJson["items"].deserialize!(Item[]); ``` it could be made even faster and nicer by allowing direct access to the buffer,...
yesterday i did some profiling for a use case i have. its more or less logfiles from a webserver which i store as msgpack frames. the application code is not...
``` "libs-posix": ["dl", "lua5.1"] ``` did the trick
@JakobOvrum not sure what you mean by that, but when you throw an exception within d code that is called from within a lua state then its not caught by...
whitespaces: it refuses to load with: `[config:1] Failed to parse option 'text-color'` which i guess is a quite confusing message.
yes, archlinux. by default it now has `gcc (GCC) 7.1.1 20170630` `flex 2.6.4` `bison (GNU Bison) 3.0.4` there must be something going wrong during the configure step.
@derekjn sure. but its basically just what the readme says. here is a Docker file to reproduce the issue: https://github.com/yannick/build-pipelinedb-on-archlinux if that works some more work is needed, namely remove...
any news here @derekjn ?