Questions tagged [paging]

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.

2459 questions
6
votes
2 answers

How does an OS generally go about managing kernel memory and page handling?

I'm working on kernel design, and I've got some questions concerning paging. The basic idea that I have so far is this: Each program gets its own (or so it thinks) 4G of memory, minus a section somewhere that I reserve for kernel functions that the…
Blank
  • 7,088
  • 12
  • 49
  • 69
6
votes
4 answers

Linkbutton inside Repeater for paging ASP.Net

I'm doing a webpage with a search that brings a lot of information from MSSQL. What I did is a stored procedure that return only the page to be seen on the website. Right now I'm working on the paging as I need to show something similar than google.…
Gerardo Abdo
  • 1,150
  • 3
  • 10
  • 16
6
votes
2 answers

Transform LINQ IQueryable into a paged IQueryable using LINQ to NHibernate

I wanna do something like that public IQueryable GetPaged(IQueryable query, int startIndex, int pageSize) { return GetSession() .Linq() .UseQuery(query) .Take(pageSize) …
Rookian
  • 19,841
  • 28
  • 110
  • 180
6
votes
0 answers

alphabet navigation with paging in jquery

I need to do alphabet navigation with paging for my grid/table in asp.net mvc(C#) application. I am looking for something similar to jquery ListNav The above plugin is good in doing alphabet navigation, but when a particular alphabet contains more…
Prasad
  • 58,881
  • 64
  • 151
  • 199
6
votes
2 answers

How to Allocate memory from a new virtual page in C?

I am analyzing the effect of allocation across virtual pages while creating a 2-D array of dimension PageSize x PageSize. My machine's page size is 4096. I have an array of 4096 integer pointers(columns), pointing to 4096 integers(rows). I want to…
user1736947
  • 192
  • 9
6
votes
1 answer

What is meant by dividing a process into pages in the concrete sense?

The way I understand the notion of a 'process' is that it is a running instance of an executable program.The exe is in the secondary memory and the running instance of it is in the RAM. If this understanding is right, I would like to know what is…
user1907672
  • 99
  • 1
  • 4
6
votes
2 answers

Disabling pagefile just for an application?

I have a real-time application running on a server with terrible disk IO access times (the actual transfer speed is great, but requesting disk-access can take seconds before being granted). Windows moves memory into the page-file even when there's…
Mr. Smith
  • 4,288
  • 7
  • 40
  • 82
6
votes
2 answers

Delphi - invalid stream format errors on run

Delphi 6 Prof. We have many applications. The programs have 8-12 MB size. In this period we many times got reports about "Invalid stream format" errors. We use shared Windows (or Linux) folders to store the applications, and users running them from…
durumdara
  • 3,411
  • 4
  • 43
  • 71
6
votes
2 answers

Linux Kernel Memory Management Paging Levels

I'm reading through the book "Understanding Linux Kernel" by Bovet and Cesati. In the second chapter, under "Paging in Linux" the author mentions how Page Middle and Upper Directories are eliminated with 32 architectures not having PAE enabled. I'm…
subramanian
  • 1,005
  • 2
  • 11
  • 21
6
votes
1 answer

How to use RouteValues using MvcPaging2.0 in MVC3?

Html helper @Html.Pager from MvcPaging 2.0. has .Options(o => o.RouteValues(object RouteValues)) which can return Model back to Controller,but MvcPaging requires this helper to be filled with IPagedList in View that he lives in. This is the…
Davor Zubak
  • 4,726
  • 13
  • 59
  • 94
6
votes
5 answers

asp.net GridView Pager disappears!

I have a datagridview that is using paging, it works perfectly fine and I have a drop down that allows the user to change the 'PageSize' property - 10, 15, 25, 50, 100, 1000 etc. When I select a value for the PageSize that is greater than the row…
AwkwardCoder
  • 24,893
  • 27
  • 82
  • 152
6
votes
1 answer

MongoDB $slice (embedded array paging)

I have this schema: article: { subject, comments: [] } if I have 8 comments, and query article.find({}, { comments: { $slice: [ -10, 5 ] } }); And I get comments from index 0 to index 4, but I only want comments from…
Kevin
  • 1,147
  • 11
  • 21
5
votes
1 answer

how to implement paging with RestSharp

I am using RestSharp to consume a REST style service. Pretty new to this library and would appreciate some guidance on how to implement paging using RestSharp. Any existing examples on how to achieve this? RestSharp - http://restsharp.org/ Thanks
Pratik Kothari
  • 2,446
  • 2
  • 32
  • 54
5
votes
2 answers

How to execute "less" with paging from a Java console application?

I need to execute the less command, with paging, from my Java console application. However, the only method I found to execute external commands is Runtime.getRuntime().exec(), which requires me to write/read input/output via streams. So commands…
futlib
  • 8,258
  • 13
  • 40
  • 55
5
votes
2 answers

jqgrid client side sorting with server side paging - data disappears

it states in jqgrid documentation that the code below should allow local sorting with server side paging; the grid data disappears on paging; this question has been asked before with no clear answer - suggestions to use loadonce:true means that…
Pete_ch
  • 1,301
  • 2
  • 28
  • 39