Protobuf support #590
Replies: 4 comments 7 replies
-
Hey @newdev8! 👋 Do you currently reach limits because of the JSON format slowing you down? Thanks 🙇♂️ |
Beta Was this translation helpful? Give feedback.
-
I am using almost 90% of my power with the current configuration and less than 5k rows, so it won't scale well with the 20k rows we need. I know using protobuf won't make it go down drastically, but I'll help a bit as I'm hosting on a microcontroller. We try to max out our efficiency by using Rust, zero-copy whenever we can, etc... And protobuf would also help. |
Beta Was this translation helpful? Give feedback.
-
Thanks, @newdev8! What are the reasons to use Meilisearch on a microcontroller? Are you restricted to this? |
Beta Was this translation helpful? Give feedback.
-
We use Meilisearch in a microcontroller because the device has to be portable, and to use the least amount of battery possible we chose a microcontroller. Technically we could use other low-end devices (like a Raspberry Pi) but after testing different options, this works best for us as battery can last all day with one charge. |
Beta Was this translation helpful? Give feedback.
-
Meilisearch is designed to be fast and efficient, and while that is the case, using protocol buffers instead of JSON would make parsing a bit more faster. I think they could both be an option to choose, saving time and resources for both the server and the end user.
Beta Was this translation helpful? Give feedback.
All reactions