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
7
votes
1 answer
UIScrollView does not always animate deceleration when overriding scrollViewWillEndDragging
Here is my override code - it just calculates where to snap to:
- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset {
if(targetContentOffset->y <…

3rdFunkyBot
- 396
- 3
- 8
7
votes
2 answers
How to speed up scrolling in UIScrollView?
I want to make paging/scrolling in UIScrollView to be faster, so when the user lefts his finger the next page will come faster than normal regardless the speed of the acceleration.

4mahmoud
- 813
- 2
- 19
- 31
7
votes
2 answers
If we have infinite memory, then do we still be needing paging?
Paging creates illusion that each process has infinite RAM by moving pages to and from disk. So if we have infinite memory(in some hypothetical situation), do we still need Paging? If yes, then why? I faced this question in an interview.

Sreeja Das
- 1,234
- 12
- 12
7
votes
2 answers
Enable Paging in UIScrollView after Zooming
I have a UIScrollView that loads three different pages.When i zoom in on a page, and zoom back out to the original size, the application stops letting me scroll between the pages, as if paging is disabled. What can i do to re-enable paging when…

Elias Rahme
- 2,226
- 3
- 28
- 53
7
votes
4 answers
Paging not working in asp.net gridview inside AJAX updatepanel
I have an asp.net gridview that is originally bound to a sqldatasource control, but when the user presses an external button, it instead gets the contents of a datatable rather than a SQLdatasource control. I therefore had to write code in the…
bsg
7
votes
3 answers
Knockout template to create pagination UI / links similar to StackOverflow
I have a functioning Knockout template for some pagination UI that works with a Knockout-based shared data grid. This template renders an HREF for each "page" of data in the grid.
The template works but it's klunky because if I fetch a lot of data,…

Armchair Bronco
- 2,367
- 4
- 31
- 44
7
votes
2 answers
jqGrid: How to use multiselect on different pages
Simple question, hard to find an answer:
If I try to select a row programmatically, I use this:
$('#grid').jqGrid('setSelection', rowId);
The problem is that it only selects rows on current visible page. If rowId is on another page, it will not be…

Rafa Borges
- 576
- 1
- 7
- 17
7
votes
1 answer
Minimum Page Frames
What determines the minimum number of page frames that must be allocated to a running process in a virtual memory environment.
I found the the answer to the above question is instruction set architecture but couldn't understand reason behind…

Amol Sharma
- 1,521
- 7
- 20
- 40
7
votes
2 answers
Which paging method (Sql Server 2008) for BEST performance?
In Sql Server 2008, many options are available for database paging via stored procedure. For example, see here and here.
OPTIONS:
ROW_NUMBER() function
ROWCOUNT
CURSORS
temporary tables
Nested SQL queries
OTHERS
Paging using ROW_NUMBER() is known…

dev
- 1,291
- 3
- 18
- 26
7
votes
1 answer
memory paging with D
I'm using D/Tango for catalog indexing, is there any library to aid with memory (RAM) paging for a dictionary which is in memory and can go up to 10gb while performing indexing?

kar
- 977
- 10
- 21
6
votes
2 answers
Paged Collection View in WPF
Is there an implementation of PagedCollectionView in WPF around? It exists in Silverlight but isn't in WPF.
If there isn't, what would be the simplest way to implement this?

Phaded
- 99
- 1
- 1
- 6
6
votes
0 answers
How to properly do page table warming in C++?
I have a big shared memory allocated (4 MB) between two processes. My process-1 writes on this memory pool, using it as a circular buffer, by writing in chunks of 256 bytes, one after the other. My process-2 reads from the memory. I am using locks…

W1nTer003
- 163
- 9
6
votes
1 answer
How to create an Azure.AsyncPageable for mocking?
I would like to mock a C# method that returns an Azure.AsyncPageable.
This class has only protected constructors, so I cannot instantiate it directly. Is there any way to create an instance of this class from some other collection, such as an…

Claus Appel
- 1,015
- 10
- 28
6
votes
1 answer
How to handle paging in asp.net mvc?
I'm using asp.net mvc. I want to add paging to the list of records. Please help with any links or sample code.
Thanks.

Ravi
- 1,293
- 6
- 20
- 31
6
votes
0 answers
Facebook API Missing Paging Cursors
I am using the Facebook API to retrieve comments from my posts.
Most of the time, when there are more than 25 comments on a post, I am given this paging information:
{
//COMMENT DATA
"paging": {
"cursors": {
"before": "",
"after":…

Dan Williams
- 171
- 1
- 7