C ++ api for elasticity search

From what I understand, elasticsearch does not provide him with a C ++ api. So, I assume that I should use a library to send / receive http requests for indexing and searching. Any library recommendations that would satisfy the search for elasticity? Thanks.

+6
source share
2 answers

Any network library should work fine. Libcurl is probably the easiest / fastest to run, since all you really need is simple HTTP requests (Get / Put / Post / Delete)

+7
source

I just released one on github: https://github.com/QHedgeTech/cpp-elasticsearch .

There is one home http client, but it can be easily connected to libcurl. It is still minimal, I hope that you are contributing to meet your needs.

cpp-elasticsearch is a small C ++ API for elasticsearch search, it aims to become official. The documentation is yet to come, as well as the Getting Started page.

The actual version is minimal and was developed for the needs of Q-Hedge Technologies. This code uses C ++ 11 functions.

+7
source

All Articles