¡@

Home 

java Programming Glossary: scalability

Why use a ReentrantLock if one can use synchronized(this)?

http://stackoverflow.com/questions/11821801/why-use-a-reentrantlock-if-one-can-use-synchronizedthis

variables or lock polling. ReentrantLock also has scalability benefits and you should use it if you actually have a situation..

Problem with synchronizing on String objects?

http://stackoverflow.com/questions/133988/problem-with-synchronizing-on-string-objects

way. Obviously this approach needs to be soak tested for scalability before use I guarantee nothing. This code does NOT require that..

Calling a getter in Java though reflection: What's the fastest way to repeatedly call it (performance and scalability wise)?

http://stackoverflow.com/questions/14146570/calling-a-getter-in-java-though-reflection-whats-the-fastest-way-to-repeatedly

the fastest way to repeatedly call it performance and scalability wise Given a class Foo and a property bar neither of which..

Why choosing JMS for asynchronous solution ? Why is it better than a simple entity bean?

http://stackoverflow.com/questions/2096734/why-choosing-jms-for-asynchronous-solution-why-is-it-better-than-a-simple-enti

e.g. redelivery attempt dead message queue load management scalability clustering monitoring etc. JMS also support publish subsribe..

Client side sessions

http://stackoverflow.com/questions/2131522/client-side-sessions

apps to hold their own authentication state. This improves scalability because no session replication between cluster nodes is needed...

What are the pros and cons of the assorted Java web frameworks? [closed]

http://stackoverflow.com/questions/24596/what-are-the-pros-and-cons-of-the-assorted-java-web-frameworks

if it becomes popular it would be good for it to have some scalability or to at least be able to redesign for that. What are the main..

Java N-Tuple implementation

http://stackoverflow.com/questions/3642452/java-n-tuple-implementation

exist once Typelock is set . This hurts reusability and scalability in programs wanting to use multiple types of Tuples unless you..

PHP vs Java performance and scalability comparison [closed]

http://stackoverflow.com/questions/3975691/php-vs-java-performance-and-scalability-comparison

vs Java performance and scalability comparison closed Is there a good modern comparison last couple.. if the front end web application technology matters in the scalability equation or does caching and persistence play a bigger role.. or does caching and persistence play a bigger role in the scalability equation. java php performance scalability share improve..

Java's Mahout equivalent in Python

http://stackoverflow.com/questions/4819437/javas-mahout-equivalent-in-python

Are there any equivalent libraries in Python java python scalability machine learning mahout share improve this question scikits..

What's the difference between ConcurrentHashMap and Collections.synchronizedMap(Map)?

http://stackoverflow.com/questions/510632/whats-the-difference-between-concurrenthashmap-and-collections-synchronizedmap

While it is synchronized it seems to have serious scalability issues and is discouraged for new projects. But what about the..

Should I use EJB3 or Spring for my business layer?

http://stackoverflow.com/questions/68527/should-i-use-ejb3-or-spring-for-my-business-layer

is between EJB3 and Spring with our biggest concerns being scalability and performance and also maintainability of the code base. Here.. benchmark information java performance spring ejb 3.0 scalability share improve this question There won't be much difference..

Singleton instantiation

http://stackoverflow.com/questions/7121213/singleton-instantiation

will be serialized. If it happens a lot it will reduce the scalability of your application. That's why I prefer the SingletonHolder.. The real problem with lock acquisition is that it hurts scalability by serializing access to the synchronized block. Someone devised..

What is the best macro-benchmarking tool / framework to measure a single-threaded complex algorithm in Java? [closed]

http://stackoverflow.com/questions/7146207/what-is-the-best-macro-benchmarking-tool-framework-to-measure-a-single-threade

performance with the JUnit test decorator TimedTest and scalability with the JUnit test decorator LoadTest . parameterizable Java..