JLD.jl icon indicating copy to clipboard operation
JLD.jl copied to clipboard

Saving and loading julia variables while preserving native types

Results 100 JLD.jl issues
Sort by recently updated
recently updated
newest added

My application is crashing on a JLD.save instruction in Julia 0.6.2 running in Linux. It works fine in Windows. Unfortunately, I have not been able create a MWE; so far...

With a fresh install of Julia 0.6.2 on Windows 10, I get the following: ``` INFO: Downloading https://cache.julialang.org/http://download.opensuse.org/repositories/windows:/mingw:/win64/openSUSE_Leap_42.2/repodata/repomd.xml WARNING: Unknown download failure, error code: 2148270088 WARNING: Retry 1/5 downloading: https://cache.julialang.org/http://download.opensuse.org/repositories/windows:/mingw:/win64/openSUSE_Leap_42.2/repodata/repomd.xml...

After I updated JLD to the newest v0.8.3, I found "using JLD" is very slow, even it not running for the first time (so it should already be precompiled). ```julia...

I tried to save a structure in a JLD file but i forgot to create the folders that i use in my path. and i get this : (too much...

``` julia using DataStructures, JLD d = DefaultDict(Int, Int, () -> 0) d[1] = 3 @save "test.jld" d @load "test.jld" ``` gives me ``` `DefaultDict{Int64,Int64,Function}` has no method matching DefaultDict{Int64,Int64,Function}()...

I have encountered this error after updating the packages last Sunday: ```Vec.VecSE2 is not of a type supported by JLD``` The code used to be working fine before doing the...

While I see that title seems tautologic ;-) and that issue may very well be a feature, please consider the following example: ```julia X = Array{Float64}(2,2) X[1,1] = rand() X[2,1]...

Okey, this may not be an "issue" per se, but I do not seem to find here or anywhere else a practical way to replace the contents of only some...

Why is there no `jldwrite("test.jld", "y", rand(2,2))` convenience function? ```julia using JLD # create dummy file save("test.jld", "x", rand(2,2)) # I now want to add another element to "test.jld" #...

Why ist it that I have to do ```julia jldopen("test.jld", "r+", compress=true) do f write(f, "x", rand(Complex128, 2,2)) end ``` and can't do ```julia jldopen("test.jld", "r+") do f write(f, "x",...