Use AT names instead of OIDs for the indexed attributes
-------------------------------------------------------
Key: DIRSERVER-1298
URL: https://issues.apache.org/jira/browse/DIRSERVER-1298
Project: Directory ApacheDS
Issue Type: Improvement
Affects Versions: 1.5.4
Reporter: Emmanuel Lecharny
Fix For: 1.5.5
Right now, for indexed technical attributes, we are using OIDs, This is not
user friendly :
<jdbmIndex attributeId="1.3.6.1.4.1.18060.0.4.1.2.1" cacheSize="100"/>
<jdbmIndex attributeId="1.3.6.1.4.1.18060.0.4.1.2.2" cacheSize="100"/>
<jdbmIndex attributeId="1.3.6.1.4.1.18060.0.4.1.2.3" cacheSize="100"/>
<jdbmIndex attributeId="1.3.6.1.4.1.18060.0.4.1.2.4" cacheSize="100"/>
It would be much better if we can use the attribute's name instead :
<indexedAttributes>
<jdbmIndex attributeId="apacheNdn" cacheSize="100"/>
<jdbmIndex attributeId="apacheUpdn" cacheSize="100"/>
<jdbmIndex attributeId="apacheExistance" cacheSize="100"/>
<jdbmIndex attributeId="apacheHierarchy" cacheSize="100"/>
<jdbmIndex attributeId="apacheOneAlias" cacheSize="10"/>
...
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.