InterviewSolution
| 1. |
Why Use Ldap When You Can Do The Same With Relational Database (rdbms) ? |
|
Answer» In general LDAP servers and RDBMS are DESIGNED to provide different types of services. LDAP is an open standard access mechanism, so an RDBMS can talk LDAP. HOWEVER the servers, which are built on LDAP, are optimized for read access so likely to be much faster than RDBMS in PROVIDING read access. So in a nutshell, LDAP is more useful when the information is often searched but rarely modified. (Another difference is that RDBMS systems store information in rows of tables whereas LDAP uses object oriented hierarchies of entries.) . Key LDAP Terms:
In general LDAP servers and RDBMS are designed to provide different types of services. LDAP is an open standard access mechanism, so an RDBMS can talk LDAP. However the servers, which are built on LDAP, are optimized for read access so likely to be much faster than RDBMS in providing read access. So in a nutshell, LDAP is more useful when the information is often searched but rarely modified. (Another difference is that RDBMS systems store information in rows of tables whereas LDAP uses object oriented hierarchies of entries.) . Key LDAP Terms: |
|