Tagged Questions

1
vote
4answers
79 views

PHP Loop Performance Optimization

I am writing a PHP function that will need to loop over an array of pointers and for each item, pull in that data (be it from a MySQL database or flat file). Would anyone have any ideas of optimizing …
1
vote
2answers
223 views

why doesn’t this erlang code work???

fib(N)-> P1 = spawn(fun concFib:conFib/0), P2 = spawn(fun concFib:conFib/0), X=rpc(P1,N-2),Y=rpc(P2,N-1),X+Y. conFib()-> receive {Client,N} -> …
0
votes
4answers
104 views

Strategy in java to clean up / remove unused map elements

Hi, I'm implementing a "manager" in my web app that can be called to set and get which web site context the current thread is in (we white label our site so the web site context represents which …
3
votes
4answers
118 views

Multi-threaded application interaction with logger thread

Hi there, folks. Here I am again with questions about multi-threading and an exercise of my Concurrent Programming class. I have a multi-threaded server - implemented using .NET Asynchronous …
2
votes
3answers
460 views

.NET Asynchronous stream read/write

Hi, folks. I would really appreciate to have your help on the following issue: I have been trying to solve this "Concurrent Programming" exam exercise (in C#): Knowing that Stream class contains …
10
votes
9answers
483 views

Why Clojure instead of Java for concurrent programming

When Java is providing the capabilities for concurrent programming, what are the major advantages in using Clojure (instead of Java)?
1
vote
1answer
129 views

How to stop the execution of Executor ThreadPool in java?

Hi, I am working on the Executors in java to concurrently run more threads at a time. I have a set of Runnable Objects and i assign it to the Exceutors.The Executor is working fine and every thing is …
4
votes
3answers
308 views

What is this new Axum programming language?

I read this story on slashdot today where they announce a new parallel programming language by Microsoft. What is this new programming language about? It says Parallel Programming. But is it going to …