Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
761 views

Concurrent Programming Book for Unix in C

I'm looking for good books on concurrent programming in C in the Unix environment. They need to cover classic concurrency, Unix multi-processing, and POSIX thread. Most of the books I have found are ...
2
votes
3answers
438 views

Invalid Cross-Thread Operations from BackgroundWorker2_RunWorkerCompleted in C#

I'm getting an error that does not make sense. Cross-thread operation not valid: Control 'buttonOpenFile' accessed from a thread other than the thread it was created on. In my application, the UI ...
2
votes
5answers
153 views

Preventing spamming of the functionality of a php page

The background: Ok, I run a legacy BBG over at ninjawars.net. There is an "attack" that players can make on other players that is initialized via form post. Essentially, we can simplify the ...
1
vote
7answers
472 views

Download multiple pages concurrently?

I'd like to write a script in Python that can grab url's from a database, and download web pages concurrently to speed things instead of waiting for each page to download one after the other. ...
1
vote
1answer
1k views

Scala actors as single-threaded queues

I'd like to use actors in a program where I'll have some kind of restriction around treating some of the actors as if they were queues. For example, suppose I have some external system to which change ...
0
votes
0answers
104 views

leak in concurrent.futures' threadpool (using the 2.6 backport)

I am using the ThreadPoolExecutor from the concurrent.futures package (as backported to python 2.6) to fork off tasks to a threadpool. Speedwise this works great, but I get a mean memory leak when ...
0
votes
3answers
770 views

Concurrent Threads in C# using BackgroundWorker

My C# application is such that a background worker is being used to wait for the acknowledgement of some transmitted data. Here is some psuedo code demonstrating what I'm trying to do: UI_thread { ...
0
votes
4answers
179 views

Getting a Chunk of Work

Recently I had to deal with a problem that I imagined would be pretty common: given a database table with a large (million+) number of rows to be processed, and various processors running in various ...