Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8623857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T07:23:02+00:00 2026-06-12T07:23:02+00:00

I have a function that does a calculation and saves the state of the

  • 0

I have a function that does a calculation and saves the state of the calculation in the result dictionary (default default argument). I first run it, then run several processes using the multiprocessing module. I need to run the function again in each of those parallel processes, but after this function has run once, I need the cached state to be returned, the value must not be recalculated. This requirement doesn’t make sense in my example, but I can’t think of a simple realistic argument that would require this restriction. Using a dict as mutable default argument works, but
this doesn’t work with the multiprocessing module. What approach can I use to get the same effect?

Note that the state value is something (a dictionary containing class values) that cannot be passed to the multiple processes as an argument afaik.

The SO question Python multiprocessing: How do I share a dict among multiple processes? seems to cover similar ground. Perhaps I can use a Manager to do what I need, but it is not obvious how. Alternatively, one could perhaps save the value to a global object, per https://stackoverflow.com/a/4534956/350713, but that doesn’t seem very elegant.

def foo(result={}):
    if result:
        print "returning cached result"
        return result
    result[1] = 2
    return result

def parafn():
    from multiprocessing import Pool
    pool = Pool(processes=2)
    arglist = []
    foo()
    for i in range(4):
        arglist.append({})
    results = []
    r = pool.map_async(foo, arglist, callback=results.append)
    r.get()
    r.wait()
    pool.close()
    pool.join()
    return results

print parafn()

UPDATE: Thanks for the comments. I’ve got a working example now, posted below.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T07:23:03+00:00Added an answer on June 12, 2026 at 7:23 am

    This code would not win any beauty prizes, but works for me.
    This example is similar to the example in the question, but with some minor changes.
    The add_to_d construct is a bit awkward, but I don’t see a better way to do this.

    Brief summary: I copy the state of foo‘s d, (which is a mutable default argument) back to foo,
    but the foo in the new process spaces created by the pool. Once this is done, then foo in the new process spaces
    will not recalculate the cached values.
    It seems this is what the pool initializer does, though the documentation is not very explicit.

    class bar(object):
        def __init__(self, x):
            self.x = x
        def __repr__(self):
            return "<bar "+ str(self.x) +">"
    
    def foo(x=None, add_to_d=None, d = {}):
        if add_to_d:
            d.update(add_to_d)
        if x is None:
            return
        if x in d:
            print "returning cached result, d is %s, x is %s"%(d, x)
            return d[x]
        d[x] = bar(x)
        return d[x]
    
    def finit(cacheval):
        foo(x=None, add_to_d=cacheval)
    
    def parafn():
        from multiprocessing import Pool
        arglist = []
        foo(1)
        pool = Pool(processes=2, initializer=finit, initargs=[foo.func_defaults[2]])
        arglist = range(4)
        results = []
        r = pool.map_async(foo, iterable=arglist, callback=results.append)
        r.get()
        r.wait()
        pool.close()
        pool.join()
        return results
    
    print parafn()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a function, lets say that it does some trivial calculation. The Controller
I have a .NET function that does some complex calculation. Depending on the parameters
I have a function that does a long task and I want to update
Say I have a function that does the following in Vb.net For i as
I have the following function that does string splitting: on splitText(aString, delimiter) set retVal
I would like to have a mapping function that does this: public static void
Here's the story... I have a jQuery function that does something, this function is
I have a class named toto which I send to a function that does
I need to write a little ruby function that does word wrapping. I have
I have a for loop in a search function, with a function that does

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.