Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法从 Algolia 索引中检索所有 objectID?
我知道[*Index Name*].browse_all()文档中说它一次可以检索 1000 个对象,但它检索整个对象而不仅仅是对象 ID。
[*Index Name*].browse_all()
我可以使用分页,但不想也不想拉整个对象,因为我们的索引不小。
浏览是正确的方法。
好处是您可以在执行 a 时指定参数browse_all,其中一个可以attributesToRetrieve: []不检索任何属性。因此,您只会得到objectID.
browse_all
attributesToRetrieve: []
objectID