-
Notifications
You must be signed in to change notification settings - Fork 95
Closed
Labels
dataRelated to data managementRelated to data managementdiscussionLet's talk about how things should be!Let's talk about how things should be!
Description
Hello!
When you have a lot of simulation parameters, the filename under which you want to save your data mighty become too long. Here is a minimal working example of such a situation:
long_word = "thisIsAVeryLongWordAndItCanBeEvenLonger"
very_long_dict = Dict(:long_word => long_word, :a=>0.123)
very_long_dict[:other_long_word] = long_word*long_word
dict_with_results = Dict(:niceresults => true)
DATADIR_NAME = "testDir"
wsave(datadir(DATADIR_NAME, savename(very_long_dict, "bson")), dict_with_results)
That gives the following error:
IOError: stat: name too long (ENAMETOOLONG) for file ...
Would you have any ideas?
Thank you.
Metadata
Metadata
Assignees
Labels
dataRelated to data managementRelated to data managementdiscussionLet's talk about how things should be!Let's talk about how things should be!