Index prices with multiple currencies #463
rauldeheer
started this conversation in
Feedback & Feature Proposal
Replies: 2 comments 5 replies
-
Hi @rauldeheer 👋 Why not store the currencies inside a product document? {
"id": 1,
"name": "Product name",
"usd_price" : 1,
"eur_price": 2,
"aud_price": 3
} |
Beta Was this translation helpful? Give feedback.
3 replies
-
I've just transferred this discussion to the right repo so that the product team can take care of it the right way 😇 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
My me and my team are working on a website that should support all currencies. We basically need to be able to show our website in all currencies, including the search page and results. How should we approach this with Meilisearch? We currently have a single
products
index with all product information.We were unable to find a proper solution on the internet. Is the only solution to create one index for each currency? For example:
products_usd
products_eur
products_aud
Etc.
Thanks for helping in advance.
Beta Was this translation helpful? Give feedback.
All reactions