Hello! Is it possible for a resource to be initial...
# ask-community
b
Hello! Is it possible for a resource to be initialized only once when using the multiprocessor executor?
a
not really - each subprocess needs its own instance of the resource objects. If you had a scheme in mind for how to make the resource available across processses you could write your own
@resource
to do so.
👍 1
b
Got it thanks!