我想使用只能在远程 rpyc 服务器上访问的 python 模块。以下两种访问远程机器上的模块的方式有区别吗:
“””在客户端:“””
my_local_mod_ref = my_rpyc_connection.root.getmodule("remote_module_name")
my_local_mod_ref = my_rpyc_connection.root.a_func_returning_the_module_ref()
""" 在服务器端:"""
def exposed_a_func_returning_the_module_ref()
import my_remote_module_name
return my_remote_module_name
如果有区别,这两种选择中的哪一种更清洁或更可取?