> I'm not an expert on Trie fields, but you need to remember > that schema.jsp > shows you the *indexed* values, and the whole point of > TrieFields is to > create multiple indexed values at various levels of > precision so that > range queries can be much faster. > > : When i query flag_value:256 i get 0 docs. Same as with > flag_value:0. > > ...which is to be expected since you didn't index any docs > with those > exact values. If you facet on that field, you should > see the 4 values you > expect (and no others) because the faceting code for > TreiFields knows > about the special values, but schema.jsp just tells you > exactly what's in > the index.
Yes tint is the default one comes with schema.xml. I queried *:* and faceted on that field, result is just like as you said: <lst name="flag_value"> <int name="100">1132679</int> <int name="200">207459</int> <int name="300">27474</int> </lst> So we can say that it is normal to see weird vaules in schema.jsp for trie types. Thanks for the explanations.