summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-30 07:40:13 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-30 07:40:13 +0000
commit3f07fc05adba7a0373a917b9c5f09825b8f14f48 (patch)
tree8e934e9aa8a83c7d2760b1d311c701b7c067d68d
parent285fae6ca3677f6756185c8dd80e83c97112bb54 (diff)
downloadATCD-3f07fc05adba7a0373a917b9c5f09825b8f14f48.tar.gz
Made TAO_CONNECTION_CACHING_STRATEGY to be NOOP by default
-rw-r--r--TAO/tao/orbconf.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/TAO/tao/orbconf.h b/TAO/tao/orbconf.h
index 054919e43eb..cacf213b6a0 100644
--- a/TAO/tao/orbconf.h
+++ b/TAO/tao/orbconf.h
@@ -149,10 +149,11 @@
#endif /* TAO_MAXIMUM_NATIVE_TYPE_SIZE */
// This deals with the strategies for connection caching. By default
-// it is the Least Recently Used (LRU) with the default purging
-// percentage of 20%.
+// it is the Null Strategy. Although it shall be Least Recently Used
+// (LRU) with the default purging percentage of 20% once this feature
+// has been thoroughly tested.
#if !defined (TAO_CONNECTION_CACHING_STRATEGY)
-# define TAO_CONNECTION_CACHING_STRATEGY TAO_Resource_Factory::LRU
+# define TAO_CONNECTION_CACHING_STRATEGY TAO_Resource_Factory::NOOP
#endif /* TAO_CONNECTION_CACHING_STRATEGY */
#if !defined (TAO_PURGE_PERCENT)