You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
CouchDB has something called "attachments" that could be used to store binary data in a more efficient form. We should make it so that if the binary data is greater than some size, then it gets stored as an attachment. When retrieving documents from CouchDB, we must then check to see if they have an attachment. If they do, then we return the attachment data. Otherwise, we look at the usual "value" field.
The text was updated successfully, but these errors were encountered:
DRK3
changed the title
CouchDB provider: if data isn't JSON, store as attachment
CouchDB provider: if data isn't JSON, store as attachment?
Mar 8, 2021
DRK3
changed the title
CouchDB provider: if data isn't JSON, store as attachment?
CouchDB provider: if data is binary and large, store as a CouchDB attachment
Mar 11, 2021
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
CouchDB has something called "attachments" that could be used to store binary data in a more efficient form. We should make it so that if the binary data is greater than some size, then it gets stored as an attachment. When retrieving documents from CouchDB, we must then check to see if they have an attachment. If they do, then we return the attachment data. Otherwise, we look at the usual "value" field.
The text was updated successfully, but these errors were encountered: