Tagged Questions
The request-queueing tag has no wiki summary.
3
votes
4answers
720 views
.NET Best approach to implementing client/server queuing model with external app?
Here is the spec:
Multiple clients using a WPF winforms application on their local machines
Clients initiate requests to the server to execute a simulation. This initiation should probably be via a ...
2
votes
1answer
732 views
C# Request Queue
My Web Service uses another API to obtain data. I cache the data, clean it and return it do the user when they make a request. At the moment I am getting a lot of requests and because I can only ...
2
votes
1answer
319 views
ASP.NET requests queued, can I identify what these requests are?
It seems helpful to find out what kind of requests currently in the queue when the queue blocked. Are there any ways for me to know the infomation of them? e.g. request url, client ip, cookie, body...
...
1
vote
1answer
81 views
Java.lang.Runtime
I have a piece of code that invokes an instance of the bash terminal through the use of the following --
proc = Runtime.getRuntime().exec("/bin/bash", null, working-dir);
and then to run unix ...
0
votes
2answers
816 views
WCF Service & Request queueing
Is using a handrolled POCO queue class using pseudo code
T Dequeue() {
lock(syncRoot) {
if(queue.Empty) Thread.Wait();
}
}
void Enqueue(T item) {
queue.Enqueue(item);
...