I add to solr index: \"American\". When I search by \"America\" there is no results.
How should schema.xml be configured to get results?
current configuratio
Why would you have two stemmers?
Try removing EnglishPorterFilterFactory
(deprecated) from both of your analyzer types, rebuild the index and then try whether search for American will yield America.
If that wont work, the other thing you can try is to remove both of your stemmer filters and add SnowballPorterFilterFactory
with language="English"
instead.