0
votes
6answers
121 views
1000 users a day for 10 minutes equal what concurrent load?
Is there a formula that will tell me the max/average # of concurrent users I would expect to have with a population of 1000 users a day using an app for 10 minutes?
0
votes
1answer
40 views
AutoResetEvent, ManualResetEvent vs Monitor
Lets say i have to orchestrate a synchronization algorithm in .net 3.5 SP1 and any of the synchronization primitives listed in the title fit perfectly for the task.
From a perform …
0
votes
1answer
38 views
Concurrent modification whilst traversing a ruby Hash
Suppose you had this:
def wipeProduct(hash, nameToDelete)
hash.each do |i|
key = i[0]
productName = i[1].first
hash.delete(key) if productName==nameToDelete
end
…
0
votes
2answers
70 views
ConcurrentHashMap and putAll() method
Normally (ie. not concurrently), putAll() cannot be more efficient than using lot's of calls to put(), even assuming that you exclude the cost of building the other Map that you pa …
0
votes
1answer
59 views
How to unit test that ExecutorService spawns new thread for task?
How does one unit test that a new thread was spawned for a Runnable task when using an ExecutorService?
Basically, I have a static thread pool for my application.
public static f …
7
votes
3answers
909 views
Stackless python and multicores?
So, I'm toying around with Stackless Python and a question popped up in my head, maybe this is "assumed" or "common" knowledge, but I couldn't find it actually written anywhere on …
3
votes
5answers
396 views
Lock free constructs in .net
I am new to .net and would like to know whether .net has the java equivalent of AtomicInteger, ConcurrentLinkedQueue, etc?
I did a bit of search and couldnt come up with anything. …
0
votes
1answer
20 views
How should I measure Concurrent Licence Usage
Hi
I have detailed stats on user access to my system detailing login and logout times as well as machine used, network username etc.
I am in need of measuring what I would term a …
0
votes
1answer
21 views
Text on Concurrency/Parallel Programming.
Id like for a good text on concurrent programming, I really dont know where to start. Would you be so kind to recommend me one, possibly at the systems level.
0
votes
4answers
785 views
PHP and concurrent file access
I'm building a small web app in PHP that stores some information in a plain text file. However, this text file is used/modified by all users of my app at some given point in time a …
0
votes
0answers
29 views
WCF WS static Proxy concurrent calls, why it won’t work?
I have found this example on http://www.codeproject.com/KB/WCF/WCFThrottling.aspx. My goal was to test multiple WS clients and i run into this issue.
My question have two parts,
…
0
votes
1answer
13 views
Is a method with no linearization points always not linearizable?
If you can definitely prove that a method has no linearization points, does it necessarily mean that that method is not linearizable? Also, as a sub question, how can you prove tha …
1
vote
2answers
83 views
Detecting concurrent usage of software without being online
Hi all
I'm looking for a way to detect multiple usages of a piece of desktop software, without them necessarily being online at the time. An online solution could be to log the I …
1
vote
5answers
414 views
Concurrent and Blocking Queue in Java
Hello Everybody,
I have the classic problem of a thread pushing events to the incoming queue of a second thread. Only this time, I am very interested about performance. What I wan …
4
votes
6answers
3k views
Multiple java versions running concurrently under Windows
We have a couple of applications running on Java 5 and would like now to bring in an application based on Java 6. Can both java versions live together under Windows? Is there any c …
