6

I want to be able to hotpatch modules while the program is running for a project I'm working on. I tried this, but it doesn't work:

qx[rm -r .precomp/*];
try require PSBot;
try PSBot.test;

Is it possible to do? If so, how can I do it?

2
  • 1
    Did you check what the error is when the require fails? I bet that's an indication why that's going to be hard. Jan 11, 2019 at 23:51
  • It returns no error
    – Kaiepi
    Jan 13, 2019 at 17:13

1 Answer 1

5

No, they can't. CompUnits, compilation units or installed modules are immutable. You cannot unload a module to load it again, which is what you mean by hotfix.

2
  • 2
    You can't unload, but could you potentially load again with a different version, and have a top level manager module that routed calls to the latest version? You would eventually run into memory problems I guess. Jan 12, 2019 at 14:08
  • 3
    Depending on if you want to keep any global state, I guess you could whip up a Perl 6 process that calls another process, which would drop out of that when needed. But that feels more like you'd need an nginx frontend with a soft restart on the backend (if you catch my drift) Jan 12, 2019 at 21:58

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.