Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
324 views
in Technique[技术] by (71.8m points)

android - Paging 3 - Does Room drop pages even if maxSize is MAX_SIZE_UNBOUNDED?

I'm using Paging 3 with Room and RemoteMediator. I haven't set a maxSize in the PagingConfig which means that we shouldn't drop pages no matter how far we scroll.

fun getSearchResults(query: String): Flow<PagingData<NewsArticle>> =
        Pager(
            config = PagingConfig(pageSize = 50),
            remoteMediator = SearchNewsRemoteMediator(query, newsArticleDatabase, newsApi),
            pagingSourceFactory = { newsArticleDao.getSearchResultArticlesPaged(query) }
        ).flow

However, I noticed that Room still drops pages when I scroll far enough. I observed that in logcat via an AdapterDataObserver.

onItemRangeRemoved start: 100 count: 100 end: 199

My question is: Is this expected behavior, or a bug, or some error on my side? If it's expected behavior, what is the maxSize attribute for? I observed my data with a maxSize value set but it never removed any entries from the database.

Edit: I now also noticed that Room does not drop pages if we are looking at cached offline data. Why? I would expect it to behave exactly the same.

question from:https://stackoverflow.com/questions/65898009/paging-3-does-room-drop-pages-even-if-maxsize-is-max-size-unbounded

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...