Can anyone recommend a good 2nd level object caching solution for JEE 6 applications, and give background to your recommendation? I'm using JPA 2.0 as persistence provider.
I am particularly worried about having to run the cache client as a single-thread / singleton bean. Is that the case? If so, is that an issue?
I've good experience using memcached from a PHP webapp, but PHP is of course single-threaded, so that was never an issue...