I have a search that goes through a list of thousands of products, using keyword matching across 4 different columns. Would combining all the keywords into a single column improve the app’s speed?
Also, if I have several actions that currently run simultaneously, would splitting them into two separate steps (for example: first creating a record, and then updating it) help improve performance?
I think it will help using a single column in the database for your search:
You can create a new column in your products database, that will include all the information combined you need to search in, and then in the search bar you only will check the “Search index” column.
Example if you have 4 different columns:
Name | Surname | Birthday | City
You will create a new column “Search index” that will include in a single field these data:
Name Surname Birthday City
Hey thanks for the answer!
The thing is I have hundreds of nicknames for each product, the question is whether it is better to split it into several columns or one column in terms of how adalo is structured