Python Global Variables in multiple files

前端 未结 2 562
醉酒成梦
醉酒成梦 2020-12-02 03:00

I have 2 daemons, which should access the same Variable. I\'ve created a 3rd file for global variables and each daemon can access the variable. But when one changes the var

2条回答
  •  暖寄归人
    2020-12-02 03:13

    It looks like (although you don't tell explicitly that) you are running your programs in a completely independent way: two different invocations of the Python interpreter.

    There is no such magic as you are hoping would exist: just as if you have two instances of the same program running, each one will have its instance of variables (global or otherwise).

    If you are performing some simple task, the easier way to go is to have one text file as output for each process, and the other process trying to read information from the file generated by each process it wants to know about - (you could even use named pipes in Unixes).

    The other way is to have a Python script to coordinate the starting of your daemons using the multiprocessing stdlib module, and then create a multiprocessing.Manager object to share variables directly between process. This can be more complicated to set up at first, but it is the clean thing to do. Check the docs on the Manager class here: https://docs.python.org/3/library/multiprocessing.html

提交回复
热议问题