I had a nosql server for the application backend and json is coming from that server through Retrofit.
now i want to store the Json for the offline use, can i use that json to store in couchdb database.
Json structure can be
player -|
| id
| name -|
| firstname
| lastname
and then i want to search through firstname
Can i use couchbase-lite for that in android
or is there any other good alternative solution for that :- note :- it is a complex json so I can not covert it into POJO again otherwise I will use the Realm for this.