new features in jcs-1.2-dev

2005-01-13 Thread Aaron Smuts
New in jcs-1.2-dev: http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-turbine-jcs/tempbuild/jcs-1.2-dev.jar?rev=1.1 1. The disk cache now has more configuration options exposed. You can set the purgatory size, recycle bin size, etc. Also, you can set a bound on the purgatory. This solves

RE: Thread deadlock in CacheEventQueue class

2005-01-13 Thread Aaron Smuts
I suspect that it was the remove / put problem that I solved in 1.1.2. It was the only known problem of that sort. It may be due to iteration but I thought this was resolved. Iteration is very problematic on an active collection. There is no really good way to do it. We basically copy the keys

Re: Thread deadlock in CacheEventQueue class

2005-01-13 Thread Hanson Char
Ever consider using the jsr166 ConcurrentNavigableMap and ConcurrentSkipListMap ? http://gee.cs.oswego.edu/dl/jsr166/dist/jsr166xdocs/jsr166x/ConcurrentNavigableMap.html H On Thu, 13 Jan 2005 21:48:05 -0800, Aaron Smuts [EMAIL PROTECTED] wrote: I suspect that it was the remove / put problem

Re: Thread deadlock in CacheEventQueue class

2005-01-13 Thread Hanson Char
Or other Concurrent* collections for that matter (ie iteration on an active collection) On Fri, 14 Jan 2005 17:07:01 +1100, Hanson Char [EMAIL PROTECTED] wrote: Ever consider using the jsr166 ConcurrentNavigableMap and ConcurrentSkipListMap ?