You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A mystic.cache fails to cache when used in a parallel map ifcached=True, however succeeds if cached=False unless it's a dict_archive. This indicates that the in-memory cache is passed to the child process, but the in-memory cached results are not linked back to the main process. Which, makes sense, but maybe isn't what is expected. Is it reasonable to expect the in-memory cache in the main process to be able to fetch the results from the in-memory caches of the child processes?
The text was updated successfully, but these errors were encountered:
mmckerns
changed the title
cache fails to cache for in-memory archives within parallel map
cache doesn't sync for in-memory archives across parallel map
Aug 29, 2023
A
mystic.cache
fails to cache when used in a parallel map ifcached=True
, however succeeds ifcached=False
unless it's adict_archive
. This indicates that the in-memory cache is passed to the child process, but the in-memory cached results are not linked back to the main process. Which, makes sense, but maybe isn't what is expected. Is it reasonable to expect the in-memory cache in the main process to be able to fetch the results from the in-memory caches of the child processes?Current behavior:
The text was updated successfully, but these errors were encountered: