Bug 3023

Summary: About the @todo When to purge transport_cache entry in Transport_Connector.cpp
Product: TAO Reporter: Dale Wilson <wilson_d>
Component: ORBAssignee: DOC Center Support List (internal) <tao-support>
Status: NEW ---    
Severity: enhancement    
Priority: P5    
Version: 1.5.9   
Hardware: All   
OS: All   

Description Dale Wilson 2007-08-01 15:14:02 CDT
In TAO/tao/Transport_Connector.cpp is a @todo:
 @todo: This is not the right place for this
 // Purge connections (if necessary)
 tcm.purge ();

I "inherited" this todo entry.  It was already in the code when I did the transport_cache vs too-many-connections work (#2934 & 2935).  Even though I did extensive work in this area, I did NOT revisit the question of when to purge the transport cache.

In thinking about it now, however, I think that the right time to purge cache entries is when there are too many of them (obviously) which could be detected by keeping track of how long it's been since they were used -- probably using a incrementing count of calls to find_transport rather than attempting to track time-of-day.   This would be an enhancement to the cache to track this info, and a change so that the "should we purge now" check came when the cache was successful at finding an idle entry.

So this bugzilla entry is simply a place to discuss how transport cache purging should be implemented.
Comment 1 Iliyan Jeliazkov 2007-08-03 09:10:53 CDT
Isn't there something like "purging strategy" already? It's been a while ...