parallel-programming

"Parallel.For" for Java?

Hi, I was wondering if there is a Parallel.For equivalent to the .net version for Java? If there is could someone please supply an example? thanks! Jamie ...

Microsoft API for parallel programming in C

Hi, Is there any Microsoft API for parallel programing in C language ? thanks for any answers, bye ...

Parallelism with .NET 4.0 in a desktop sqlite single thread application?

Where do you see operation scenarios for parallelism/multi-threading/PLINQ etc for a single threaded WPF desktop app with sqlite? I would like to know wether I could tune my application somehow and even when it is just for the learning effect :) ...

How to connect to modems within tcp clients in multiple port or other way?

I have around 5000 modem (thin clients), and I want to communicate with them, one of a my method is like this : string GetModemData(modemID), now I have an open port in server that listens to modem and I'm using socket programming to send data to modems (calling related function), but when i want send data to multiple modem in a same tim...

parallel downloads in PHP

Hi, I want to download (or simply file_get_contents) for 5 places. I wait say 1.2 sec for each that means in total 1.2X5=6 seconds. I want to save waiting time. I thought I could wait 1.3 sec is enough. How can I approach? ...