select * from bucket where field in [“a”,“b”,“c”]
vs
select * from bucket where field in [“a”,“b”,“c”, “d”, “e”, “f”, “g”, “h”, “i”, “j”, “k”, “l”, “m”, “n”, “o”, “p”, “q”, “r”, “s”, “t”, “u”, “v”, “w”, “x”, “y”, “z”, “1”, “2”, “3”, “4”, “5”, “6”, “7”, “8”, “9”, “10”]
has an substantial increase in performance, from 10ms to 100ms. is there any other way to optimize this query or write it differently?