Page - amark/gun GitHub Wiki

Your app might currently be doing:

gun.get('chat').map().on(cb) or gun.get('post-123').get('attachments').on(cb)

The problem is, as more chats are saved, this could load tens of thousands+ of messages over time. Or, even if you only have a few attachments, the individual values may be large.

In the future, GUN peers will enforce a ~4KB query limit!

This means your existing queries may only get the first "page" of data.

So if your application needs to get all of the data, you may need to upgrade your queries.

How?

This documentation will be updated as the changes are made. For now, please ask about progress in the chat.