> On Aug 20, 2014, at 10:44 AM, Sherry Ummen <[email protected]> wrote: > > Now in our case we are writting as Json objects and dumping it to the > couchbase lite sqllite and this json object can sometimes be huge depending > on the size of the project which as user is workiing on. So do you say or I > am wrongly interpretting that Couchbase lite is not a good fit for this > purpose?
Does the JSON data need to be indexed/queried? If not, you can store it in an attachment. Then your app can just read the attachment as a blob and run it through a JSON parser. (Or use some other encoding format; JSON isn't very efficient.) If it has a small subset that needs to be queried, you can store that subset as actual document properties and keep the rest as an attachment. —Jens -- You received this message because you are subscribed to the Google Groups "Couchbase Mobile" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/mobile-couchbase/6F4B27B0-E468-4806-972F-05EF4F3E49D4%40couchbase.com. For more options, visit https://groups.google.com/d/optout.
