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
0
votes
1 answer

How do I expose page frames to a process thorugh system call

Machine specification: Ubuntu 16.04, kernel 4.17.4 I want to allocated page frames from kernel and use these frames into a user process such that some portion of the process (i.e. a function) uses those memory pages. The idea is taken from this…
Misbah
  • 1
  • 3
0
votes
0 answers

Angular grid with server side filtering, sorting and pagination?

I want to implement Angular grid with server side pagination, filtering and sorting> Ag grid provide these feature in enterprise edition only. Is there any other grid which I can use free on production environment.
manish raghu
  • 75
  • 1
  • 8
0
votes
1 answer

Can you calculate the maximum physical address space given page size and virtual address size

A system has a 64 bit address space and pages with a size of 256KB how do you calculate the maximum physical address space?
evie
  • 73
  • 1
  • 8
0
votes
1 answer

In which systems is segmentation with paging (segmented paging) memory management technique used? Give some examples

I’m a student studying OS and I cannot find a document or something that talks about the history of memory management like where segmented paging was applied and why they don't use this anymore (because I saw somebody say that modern OSes prefer to…
0
votes
0 answers

ASP.NET Repeater and CollectionPager

Possible Duplicate: CollectionPager Problem With UpdatePanel I am using repeater for a list of my records(contents). And I'm using for paging "collectionpager". On page_load my records is normal and paging is working fine...When I filtered the…
mekar10
  • 631
  • 1
  • 6
  • 16
0
votes
1 answer

What breaks a tie in Optimal Page Replacement?

Assume we have 3 frames for a process with values (1,7,0). Now assume that the remaining references in the string reference for that process are : 4,6,7. For the reference 4 , a page fault will occur and only 7 is present in the future , so which…
John adams
  • 161
  • 9
0
votes
1 answer

How to save time when pulling data from DB using Entity Framework Core in controller with paging?

I am in a situation my web based application having slow performance after reading data from DB (100-200 records) before displaying on the page with paging enabled. I followed the example from…
Xiao Han
  • 1,004
  • 7
  • 16
  • 33
0
votes
1 answer

x86 address space calculation PAE to 36 bits

I'm having some hard time understanding PAE. I know it creates a 3rd level of indirection via the PDPT, so that the address translation goes from CR3 -> PDPT(4 entries) -> PD(512 entries) -> PT (512 entries) -> PAGE (4096). But the address is still…
user16469617
0
votes
1 answer

How to map from Page to Page in Spring Data 2?

I'm looking at some old code and I'm trying to re-write it however I encountered a problem. This is the old code that works perfectly fine: public Page search(String text, int pageNumber) { PageRequest request =…
JustQuest
  • 249
  • 4
  • 15
0
votes
1 answer

Dynamic pagination in JSP

I have a jsp page that has pagination links below to call page by page data from the database.. The links look like this << Previous 1 2 3 4 5 6 7 8 9 10 11 Next >> < a href="getnext.jsp?min=<%=val2%>&max=<%=val1%>> <%=i%> (for link…
Princesden
  • 169
  • 5
  • 14
0
votes
1 answer

Is it possible to implement paging without segmentation? x86

I've been told that segmentation is required for paging, why is that? AFAIK most systems with UEFI will start in long mode which I assume would not require segmentation at all?
user16469617
0
votes
1 answer

How can I display each item from an array of list in a RecyclerView using paging library

Good morning everyone, I hope you're doing great. I'm working with Room database with two tables or entities and want to display the list of all courses taken by a student in a recycler View using paging librar. In bind() method of the adapter, when…
0
votes
0 answers

There is a problem with Elasticsearch paging searches

I am trying to paging with Elasticsearch, but the following problem occurs. From and Size cannot exceed max_result_window size. Problem of slow search due to too many iterations of Scroll Search or Search After Thanks to everyone who replies.
0
votes
1 answer

C# GridView keep raising unexpected error when paging

I have problem with my gridview, where everything has no problem in the beginning of paging, let say you have a gridview with 3 pages, first page load, second page load, then third page load, then back to second, all no problem, but it seems…
0
votes
0 answers

Trouble enabling paging in simple kernel written in NASM

I am writing a basic kernel to learn and am having difficulty enabling paging, so that I can work in long mode. I slimmed down my code for simplicity. boot.asm: ;================================================== ; Entry point. ; ; In this file, we…
Oliver
  • 1,465
  • 4
  • 17