JNDI 获取 LDAP 搜索的大小而不检索所有数据
我需要知道我的 LDAP 目录中有多少用户和组。搜索看起来相当简单:
(| (objectClass=group)(objectClass=user))
问题是 API 非常有限。我只能得到一个 NamingEnumeration
并且它没有计数。我没有找到任何我们可以使用的函数,例如 SQL 中的 count
。
有什么方法可以获取此计数,而无需检索完整查询并使用循环对结果进行计数?
I need to know how many users and groups are in my LDAP directory. The search looks fairly simple:
(| (objectClass=group)(objectClass=user))
The problem is that the API is very limited. I can only get a NamingEnumeration<SearchResult>
and it doesn't have a count. I didn't find any functions we can use, like the count
in SQL.
Is there any way I can get this count without having to retrieve the full query and count the results with a loop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现执行此操作的唯一方法是查询空属性数组,然后循环并递增计数器。
The only way I found to do this was to make a query for an empty attribute array, then loop and increment a counter.