Valentin Churavy
Valentin Churavy
x-ref: https://github.com/JuliaLang/julia/pull/21718
``` ➜ ~ julia -p 2 _ _ _ _(_)_ | Documentation: https://docs.julialang.org (_) | (_) (_) | _ _ _| |_ __ _ | Type "?" for help, "]?"...
No that is orthogonal to this issue
I think `pmap` is the wrong interface to provide this, but I would encourage development of functionality like this in a package first to experiment with the implementation
One thing I have done recently for distributed logging: ``` @everywhere begin import Dates using Logging, LoggingExtras const date_format = "HH:MM:SS" function dagger_logger(logger) logger = MinLevelLogger(logger, Logging.Info) logger = TransformerLogger(logger)...
For me `@distributed` has been something that I would love to remove, but of course we can't since that would be API breaking. But Distributed.jl needs some love so I...
The serialization format between versions is not stable and thus mixed version are not supported (see https://docs.julialang.org/en/v1/stdlib/Serialization/). I think what would be a great addition is during initial connection to...
We certainly would need a test here for this. Right now I am moving slowly on Distributed.jl since I have my hands full with the rest of the stdlibs and...
Precompilation doesn't run `__init__` of the current module at all. This is not specific to PrecompileTools. You need to do the setup twice, once at top level and then in...
I am confused? [`get`](https://github.com/JuliaLang/julia/blob/baca8baea0e62f06530a9640153d793a69eba7f7/base/scopedvalues.jl#L49) and [`getindex`](https://github.com/JuliaLang/julia/blob/baca8baea0e62f06530a9640153d793a69eba7f7/base/scopedvalues.jl#L165) both exist?