Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
156 views

The mystery number '63' in the context of demand paging

I am running a code that mimics demand paging system here are some of the parameters: Page size = 4096 bits Processor = 32 bits Number of page frames = (variable) I run my code with a fifo or ...
1
vote
2answers
327 views

Using Ajax to Replace A Page Element Based on an Onclick Event

I'm reformulating this question as I'm understanding the issue better now. I have an application with four models: Users, Products, Varieties and Seasons. User has_many :seasons has_many ...
0
votes
1answer
555 views

Explain CPU cache paging in FreeBSD, specifically paging queues

FreeBSD implements page coloring with paging queues. The queues are arranged according to the size of the processor’s L1 and L2 caches; and when a new page needs to be allocated, FreeBSD ...