Does SwiftData require paging?

Hello.

I'm going to create an app that supports purchase records.

SwiftData was used to implement storage, backup, and restoration functions at once.

One question is whether paging is necessary.

When you receive data from a server, you usually implement paging to send and receive data efficiently.

In the case of Realm, I know that it uses Lazy data, so I know that there is no need for paging.

What about SwiftData? Can the number of data affect performance??

Does SwiftData require paging?
 
 
Q