Hello.

I have a JCS disc based cache to hold some huge serialized java objects.

To speed things up, I have created a background job that fill up the complete cache. It typically does "if(cache.get(key)==null){cache.put (key, ....);}". I do not really want to get the old object, just know if it is there. So a cache.contains(key) would be a lot faster than cache.get(key).

Is such functionality already present in JCS? Or perhaps possible to add?

 - Tore.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to