The initial release of Whirlycache, a high-speed object cache for the Java platform, has been posted on Java.net. We currently believe it to be the fastest object cache in high-concurrency multithreaded environments (but we are willing to revise this claim if someone can demonstrate otherwise!).
How do we get a list of all the elements in the cache. If we have something like
c.store(“key1″,”aaa”);
c.store(“key2″,”bbb”);
c.store(“key3,”bbb”);
Is there an easy for to get access to all the keys (key1, key2, key3)?