Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remote inference should populate the local cache passed with a job #1437

Open
johnjosephhorton opened this issue Dec 25, 2024 · 0 comments
Open

Comments

@johnjosephhorton
Copy link
Contributor

If you run this:

from edsl import QuestionFreeText
from edsl import Cache
from edsl import Survey

q1 = QuestionFreeText.example()
q2 = QuestionFreeText.example()
q2.question_name = "q2"
s = Survey([q1, q2])
c = Cache()

results = s.to_jobs().using(c).run()

I would expect that "c" would be updated with the new cached values but it is not. The RemoteCacheSync only happens when the job is run locally but remote caching is enabled.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant