Alex Lööf
06/02/2021, 8:50 AMAlex Lööf
06/02/2021, 8:56 AMKishore Nallan
06/02/2021, 8:56 AMKishore Nallan
06/02/2021, 8:59 AM{
"name": ".*_int32",
"type": "int32"
}
This way, you can easily add a new field called age_int32
and this will be automatically be inferred and indexed by Typesense.Kishore Nallan
06/02/2021, 9:00 AMv0.20.0
Alex Lööf
06/02/2021, 9:08 AM{"name": ".*", "type": "auto" },
{"name": ".*_facet", "type": "auto", "facet": true }
to our schema? To make sure we never have to swap clusters again.Kishore Nallan
06/02/2021, 9:12 AM.*_int32
gives you flexibility. If you have two integer fields only one of which must be indexed, then suffix the indexable field name with _int32
but for the other field name don't do that, so it is only stored and not indexed.