<@U01NZ4D0LDD> <@U07150QSPDH> - Okay, one more que...
# community-help
t
@Jason Bosco @Matheus Bombonato - Okay, one more question here. We’re finding some of our more expensive facet queries take quite a while. Currently, the pattern we use for these is something like:
Copy code
{
  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?
Copy code
{
  facet_by: 'int32_field',
  filter_by: 'boolean_for_int32_field:true',
}