Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sources/SQLiteData/Documentation.docc/Articles/CloudKit.md
Original file line number Diff line number Diff line change
Expand Up @@ -495,8 +495,8 @@ assets.

However, general database design guidelines still apply. In particular, it is not recommended to
store large binary blobs in a table that is queried often. If done naively you may accidentally
large amounts of data into memory when querying your table, and further large binary blobs can
slow down SQLite's ability to efficiently access the rows in your tables.
load large amounts of data into memory when querying your table. Furthermore, large binary blobs
can slow down SQLite's ability to efficiently access the rows in your tables.

It is recommended to hold binary blobs in a separate, but related, table. For example, if you are
building a reminders app that has lists, and you allow your users to assign an image to a list.
Expand Down