Replies: 1 comment 2 replies
-
Would this mean The new |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Memory mapping (controlled by the
copy_arrays
argument toasdf.open
) can be useful but increases the risk of segfaults and other unrecoverable errors.We are considering deprecating
copy_arrays
(possibly in favor of amemory_map
argument) and making the new default that a file will not use memory mapping. For a user who wants to use memory mapping they will have to override this default (perhaps by callingasdf.open(fn, memory_map=True)
or something similar).Beta Was this translation helpful? Give feedback.
All reactions