Bug 3023 - About the @todo When to purge transport_cache entry in Transport_Connector.cpp
Summary: About the @todo When to purge transport_cache entry in Transport_Connector.cpp
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.5.9
Hardware: All All
: P5 enhancement
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2007-08-01 15:14 CDT by Dale Wilson
Modified: 2007-08-03 09:10 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ...