A memory-management technique where a computer stores and retrieves data from secondary storage for use in main memory. Memory is divided into equal sized pages so to not waste any memory.
Questions tagged [paging]
2459 questions
0
votes
2 answers
Responsibility for pagination, controller layer or service layer?
What I'm curious about is whether the paging processing logic should be written in the service layer or the controller layer.
Here, the paging process logic is the task of getting the totalCount from the database and getting the total number of…

changuk
- 151
- 4
0
votes
3 answers
How do the Windows DDK samples deal with being paged out? I don't see much code dealing with it in the samples
How come the Windows DDK samples do not deal with being paged out? Are they non-pageable?

unixman83
- 9,421
- 10
- 68
- 102
0
votes
1 answer
How can I manually handle paging in my MongoDB Aggregation?
In my MongoDB I have a team collection and a group collection.
Here is an example of a team document:
'_id': ObjectId('62724a2effffbd4c82eafb1b'),
'name': 'Team A'
And here is an example of a group document:
'_id':…

TheStranger
- 1,387
- 1
- 13
- 35
0
votes
0 answers
How to construct nested recycler view using paging 3 in kotlin?
How do I build a screen where I have a vertical recyclerView and its items are horizontal recyclerView but using paging 3?
I don't know how to pass the pagingData into the childAdapter
0
votes
0 answers
Problem implementing Paging (Android, kotlin) with Marvel Api
I'm trying to implement Paging library in my project but until now it's not successful.
I'm using Marvel API and the requests works well. The app was fully done before but I'm now to implement the library and I'm not getting any results.
Basically,…

Tods
- 37
- 6
0
votes
4 answers
How can i do paging in asp.net mvc3?
I am working on asp.net mvc3 application and have many records coming from database. I want to display only 10 records first then user can click on button to see next 10 records and so on... Like facebook wall posting more records.
How can I…

Bhargav
- 451
- 3
- 13
- 26
0
votes
1 answer
Use different versions of paging library in the same project
How can I use paging 2 in one module and paging 3 in another module? Now I have paging 3 dependencies pulled into both modules

Денис
- 75
- 5
0
votes
0 answers
Any way to detect page swap from kernel or user mode
I want to build simple emulator using Intel VT-x.
Suppose we've allocated memory (guest RAM), of course from paged pool, and built EPT.
Everything working.
Now host OS (Win10 x64) decide to swap out those pages or move or smth else, so physical…

Vic3Dexe
- 1
0
votes
1 answer
WxPython, How to implement paging functionality for wx.grid.Grid?
I want to load a csv file with (10 cols, 1 000 000 rows), on to wx.Grid with row autosizing.
The time taken to auto size 1 million rows is too much (>1 hour depending on data).
So I want to implement paging functionality to wx.Grid.
Ideas I have in…

tarun_b
- 15
- 5
0
votes
0 answers
How to implement paging3 in mvvm architecture in android
I am following mvvm architecture with kotlin coroutine , how we can implement paging 3
I tried without paging but not satisficed i want to implement this

mrinal talchira
- 11
- 6
0
votes
0 answers
How to use RemoteMediator while loading from a local cache?
I am implementing a use-case where I am using Paging library to load a list of Books from my remote api. The remote api gives a list of Books for a particular page number.I am adding a simple local cache using a Map data structure to cache the list…

davidvarghese
- 637
- 2
- 10
- 18
0
votes
1 answer
vmstat in Embedded Linux
I have Embedded Linux development board running a few userspace processes. When I run "vmstat 1" I see the following
# vmstat 1
procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
r b swpd free buff cache si so…

waffleman
- 4,159
- 10
- 39
- 63
0
votes
1 answer
Grouping results to get unique rows after multiple joins
disclaimer : I don't have full control over the db schema don't judge the data structure or the naming conventions :)
I am doing this large query with multiple joins :
SELECT TOP 30
iss.iss_lKey as IssueId,
iss.iss_sName as IssueName, …

Stéphane
- 11,755
- 7
- 49
- 63
0
votes
0 answers
Why does ARM not support the full physical address space in LPAE mode?
I know that the ARM 32-bit (AArch32) architecture supports 2 types of page tables: the short format (which has 32-bit table entries) and the long format (which has 64-bit table entries and is known as LPAE).
For the short format, they managed to…

DarkAtom
- 2,589
- 1
- 11
- 27
0
votes
2 answers