Reputation: 607
I want to store images in ArangoDb as image file. I want to know if there is any API or Java API for the same. Thanking You in advance.
Upvotes: 4
Views: 3623
Reputation: 6067
Storing binary data inside ArangoDB has been a long standing feature request. Currently its not possible out of the box.
One can however do this by creating a foxx service that handles the data. The recommended way is to create a file and reference that file name inside the database.
A detailed description and an example foxx app can be found in the cookbook
Upvotes: 4