algolia / algoliasearch-helper-flutter

⚡️ Building block to create instant-search applications with Flutter
https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/flutter/
Other
21 stars 14 forks source link

Category page #41

Closed Patrick386 closed 1 year ago

Patrick386 commented 1 year ago

I am looking for a way to manage product categories efficiently. For example, I want to change the category name. Which of the two solutions below does Algolia recommend?

For Solution A, all records must be modified to rename the category. Is it right?

For Solution B, it requires join, and I want to know if it provides this function.

스크린샷 2022-10-29 오후 8 38 15
aallam commented 1 year ago

Hi @Patrick386, the best would be to update your hits and reindex them, which corresponds to your Solution A. This may come in handy for other features later on (e.g. search for facet values).

Patrick386 commented 1 year ago

Hi @Patrick386, the best would be to update your hits and reindex them, which corresponds to your Solution A. This may come in handy for other features later on (e.g. search for facet values).

Hi, You're right. SolutionB did not fit into No-SQL and was more complex. Thank you.