Subject Re: [Firebird-Java] Invalidating Cache
Author Steven Jardine
>>BTW, if you're there, can you check how do
>>we re-use connections - MRU or LRU (it should be MRU, if it's not, we have
>>to change it)?
>>
>>
It looks like the implementation of
EDU.oswego.cs.dl.util.concurrent.LinkedQueue uses a LRU style linked
list. Put places connections at the end of the list and take gets
connections from the front of the list. I could modify the class to put
connections at the front of the list?

Steve