Yes, this is almost certainly stemming. Take a look at solr/admin, [schema browser], then click on Home>fields>><your field here>. Then the index and query "details" link shows you exactly what's happening.
You can also get some joy from the admin [analysis] page. That takes input and shows you exactly what transformations occur given your schema. Both of these are well worth taking an our to understand, it'll save you hours and hours of head- scratching. You could use copyField to copy your bodytext to a field that doesn't stem, then query the copy for the terms. HTH Erick On Wed, Sep 29, 2010 at 5:42 PM, Peter A. Kirk <p...@alpha-solutions.dk>wrote: > Hi > > I issue a request like the following, in order to get a list of > search-terms in a particular field: > > http://localhost:8983/solr/terms?terms.limit=-1&terms.fl=bodytext > > But some of the terms which are returned are not quite the same as those > which were indexed (or which are returned in a search). For example, my > request above might return a term like "famili" when the indexed term was > "familie". > > Could this have something to do with stemming? > > If so, how do I ensure that I get the same search-terms from my terms > request, as those which were indexed? > > Thanks, > Peter >