"lovelyliatroim" wrote : Just back to this question
|
| anonymous wrote :
| | I would have thought that having an ISOLATION level of NONE would turn out to be
quicker but apparently not. What goes on behind the scenes when its set to
"NONE"?.
| |
|
| Any ideas as to why it would perform better with an isolation level set compared to
NONE??
|
| Thanks,
| LL
I suspect this has to do with the error levels you are seeing. With NONE, all access to
the cache is unguarded. Which is good for memory (no lock objects, CHM segments, etc.)
and *possibly* good for performance (if there is no contention). The moment there is
contention you will start to see concurrent modification exceptions and this is possibly
what JMeter is seeing as an error. You also need to look at how JMeter calculates this
throughput - e.g., if it doesn't count erroneous connections as successful (i.e.,
remove from numerator), doesn't count them at all (remove from numerator and
denominator) or adds the time taken to generate and throw an exception. :-)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4168521#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...