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 7005523
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:21:42+00:00 2026-05-27T21:21:42+00:00

I am trying to acheive multi processing in python. I might have a minimum

  • 0

I am trying to acheive multi processing in python. I might have a minimum of 500 elements in the list at least. I have a function to which each element of a list needs to be passed as an argument. Then each of this function should be executed as a seperate process using mutli processing either starting a new interpretter or however. Following is some pseudo code.

def fiction(arrayElement)
        perform some operations here

arrayList[]

for eachElement in arrayList:
        fiction(eachElement)

I want multiprocess the function under

for eachElement in arrayList:

So that I can use the multiple cores of my box. All the help is appreciated.

  • 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-05-27T21:21:42+00:00Added an answer on May 27, 2026 at 9:21 pm

    The multiprocessing module contains all sorts of basic classes which can be helpful for this:

    from multiprocessing import Pool
    def f(x):
         return x*x
    
    p = Pool(5)
    p.map(f, [1,2,3])
    

    And the work will be distributed among 3 processes.

    This is fairly simple, but you can achieve much more using an external packages, mostly a Message-oriented middleware.

    Prime examples are ActiveMQ, RabbitMQ and ZeroMQ.

    RabbitMQ has a combination of good python API and simplicity. You can see here how simple it is to create a dispatcher-workers pattern, in which one process is sending the workload, and other processes preform it.

    ZeroMQ is a bit more low-level, but is very lightweight and does not require an extenal broker.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a multi threaded PHP application right now. I have
In a Rails model I am trying to acheive a named_scope that filters on
I am a LINQ newbie trying to use it to acheive the following: I
I ned to implement the multi-linear regression in C#(3.0) by using the LinESt function
I am trying to filter a query by two (multi select) parameters. It works
I'm attempting my first forray into jQuery. I'm trying to acheive the following, though
I have got an(other) error while trying to upgrade our large project to SL4.
I am trying to implement a multi-tenant application, that is - data of all
Caan somone advise the best approach to what i'm trying to acheive (linq to
I'm trying to pass a multi array (for example 3x3) to be printed in

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.