When to use LDAP over a database?

前端 未结 6 1318
你的背包
你的背包 2021-02-05 01:56

When should I use LDAP vs. database/key-value-store/column-oriented-database/etc?

6条回答
  •  醉话见心
    2021-02-05 02:38

    In addition to what Preet Sangha has said, you should also note that LDAP is non-transactional. The server can delay updates arbitrarily, so the next read of updated data may not reflect the update. If you have transactional requirements you can't use LDAP; if you don't, you can.

提交回复
热议问题