Liferay 文档中的 "without using the indexer" 是什么意思

What does the Liferay documentation mean by "without using the indexer"

Liferay documentation 中,许多 *LocalServiceUtil 类 有 search 方法和以下文档:

Returns an ordered range of all the [...] matching the parameters without using the indexer, including keyword parameters for [...].

句子的 without using the indexer 部分是什么意思?

特别说明一下,是不是不使用任何数据库索引?这是否意味着例如 JournalArticleLocalServiceUtil.search can be expected to run much slower than the equivalent JournalArticleLocalServiceUtil.getArticles?还是意义不同?

或者这个 indexer 是指同一方法文档中的 indexes in the result set 吗?

indexer 指的是搜索引擎索引器,例如使用 Lucene、Solr、Elastic(或类似)实现的索引器。 searchgetArticles 操作将查询数据库 - 如果您进行关键字搜索,您的数据库可能不会在 (DB) 索引中使用,因为 contenttitle 不属于默认一个索引。因此,当文章数量较多时,关键字搜索引擎查询可能会导致更好的响应时间。