Todd Tarsi
06/25/2025, 8:52 PM{
facet_by: 'int32_field',
filter_by: 'int32_field:[1,2,3,4,5,6,7,8]',
}
However, in our collection, which is around 6.5 million records, this can take upwards of 10 seconds. Would we significant speed ups or decrease in RAM if we instead had this pattern as advised elsewhere?
{
facet_by: 'int32_field',
filter_by: 'boolean_for_int32_field:true',
}