Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Idea]: <Your idea title>Add page replacement algorithms #1554

Closed
3 of 5 tasks
Ananya-vastare opened this issue Oct 28, 2024 · 1 comment
Closed
3 of 5 tasks

[Idea]: <Your idea title>Add page replacement algorithms #1554

Ananya-vastare opened this issue Oct 28, 2024 · 1 comment
Assignees
Labels
enhancement New feature or request gssoc-ext Contributions made as part of GirlScript Summer of Code Extended Edition. hacktoberfest-accepted PRs accepted for Hacktoberfest 2024. Ensures contributions are counted towards the official Hackt... level1 GirlScript Summer of Code | Contributor's Levels

Comments

@Ananya-vastare
Copy link
Contributor

Idea Title

Add page replacement algorithms

Idea Description

Page replacement algorithms are essential in operating systems for managing memory when physical RAM cannot accommodate all active pages. They determine which pages to evict when new ones need to be loaded. Common algorithms include Least Recently Used (LRU), which replaces the least recently accessed page; First-In, First-Out (FIFO), which evicts the oldest page; and Optimal Page Replacement, which removes the page that won't be used for the longest time. Each algorithm has its pros and cons, with LRU often being more efficient than FIFO but more complex to implement. Understanding these algorithms is crucial for optimizing memory usage and reducing page faults.

Potential Benefits

  • Improves user experience
  • Enhances learning
  • Adds a new feature
  • Improves code quality
  • Other

Implementation Suggestions (Optional)

No response

@Ananya-vastare Ananya-vastare added the enhancement New feature or request label Oct 28, 2024
@github-actions github-actions bot added gssoc-ext Contributions made as part of GirlScript Summer of Code Extended Edition. hacktoberfest-accepted PRs accepted for Hacktoberfest 2024. Ensures contributions are counted towards the official Hackt... level1 GirlScript Summer of Code | Contributor's Levels labels Oct 28, 2024
@Ananya-vastare
Copy link
Contributor Author

@ajay-dhangar please assign this issue to me thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request gssoc-ext Contributions made as part of GirlScript Summer of Code Extended Edition. hacktoberfest-accepted PRs accepted for Hacktoberfest 2024. Ensures contributions are counted towards the official Hackt... level1 GirlScript Summer of Code | Contributor's Levels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant