Bins
Bins

Reputation: 322

how image uploading in couchdb?

I am planning to create one project and I am planning to use CouchDb to store my data. I have data as well as attachments in form of images. So I want to know that how image store In couch. It will give me URL in response or it will store binary data.?

Upvotes: 2

Views: 4912

Answers (1)

Davorin Ruševljan
Davorin Ruševljan

Reputation: 4392

You can store image in CouchDB as attachment to document. Afterwards, you can access the attachment by id specified in document containing it.

More on how CouchDB handles attachments

Upvotes: 2

Related Questions