JNDI 获取 LDAP 搜索的大小而不检索所有数据

发布于 2024-08-19 18:40:37 字数 309 浏览 4 评论 0原文

我需要知道我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热血少△年 2024-08-26 18:40:37

我发现执行此操作的唯一方法是查询空属性数组,然后循环并递增计数器。

The only way I found to do this was to make a query for an empty attribute array, then loop and increment a counter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文