I've been using couchdb + flask for my ionic app.
However, my requirements have changed slightly now and I have to store a lot of lookup files in the app (transferring them everytime is very painful and slow)...
is it possible for me to use couchbase lite alongside flask + couchdb for this?
I have been trying to get some documentation/example apps but there seems to be a dearth of good documentation on this specific issue... but from what i read, it is indeed possible to sync couchbase lite and couchdb.
Another specific question I have is can I use flask to sync the two databases rather than directly connect the couchbase lite and couchdb?
Regards, Galeej
Use base64 encode if the files are binary or just dump them as a document if they are a text file.
Say I have a file foo.txt with following content:
Then I would create a document in Couchbase-lite with key
foo.txt
and json would look like following:Now that string will be replaced with base64 string if file is binary. You will need to decode it before you can use it in application.