> On Aug 20, 2014, at 12:54 AM, Sherry Ummen <[email protected]> wrote: > > What is document limit size in Couchbase Lite? Does it have the same limit > what Couchbase Server has?
There's effectively no limit. The documents are stored in a SQLite database, which can handle terabytes of data, and attachments are stored as individual files in the filesystem. I don't recommend putting huge amounts of JSON data directly into a document; it's slow to parse, which especially slows down the indexer. Use an attachment instead. —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/F96D7A1A-267B-4092-95B4-E1AB4DA478FC%40mooseyard.com. For more options, visit https://groups.google.com/d/optout.
