Stemming With Term Actions
There are four term actions that accept the Stemming
parameter: TermGetAll
, TermGetBest
, TermExpand
, and TermGetInfo
. The general idea is always the same: whether to return the results in stemmed form (Stemming=True
), or unstemmed form (Stemming=False
). However, the behavior of this parameter depends on the action that you use.
-
TermGetAll
andTermGetInfo
. TheStemming
parameter works normally for theTermGetAll
andTermGetInfo
actions. It specifies whether to return the results in stemmed or unstemmed form. -
TermGetBest
. Only the terms which have more document occurrences than theUnstemmedMinDocOccs
configuration parameter are returned. -
TermExpand
. When theType
parameter isDocOccs
and theStemming
parameter isFalse
for theTermExpand
action, it returns counts only for the exact unstemmed form. Counts for the stemmed form are disregarded.