Hello, is there any performance difference in sear...
# community-help
t
Hello, is there any performance difference in searches when indexing a field as a string vs indexing it as an integer? I believe I saw a comment on a Github issue that string fields perform better but I can't find it
j
It depends on how you want to use the field… If you want to do full-text search on it (using the query_by parameter), indexing it as a string is the only option.
t
got it, ty