On 6/8/06, jason rutherglen <[EMAIL PROTECTED]> wrote:
Have the Solr team looked at using ReentrantReadWriteLock for things like 
LRUCache and in other places where read write locks are used?

Not really... ReentrantReadWriteLocks beat normal synchronization when
there are many readers, fewer writers, and heavy contention for the
locks.

In the case of our LRUCache, there aren't any pure readers... It's
implemented with LinkedHashMap, and every lookup changes the ordering
of the entries.

ConcurrentHashMap is a cool class, but there is no
LinkedConcurrentHashMap.  If you want to develop one feel free :-)  In
profiling though, cache lookups aren't that significant.  Are you
seeing something that indicates otherwise?

-Yonik
http://incubator.apache.org/solr Solr, the open-source Lucene search server

Reply via email to