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

TinyLFU #1

Open
ben-manes opened this issue Apr 9, 2017 · 1 comment
Open

TinyLFU #1

ben-manes opened this issue Apr 9, 2017 · 1 comment

Comments

@ben-manes
Copy link

You would probably find TinyLFU an interesting approach, as it focuses on admission rather than eviction. This is done by using a popularity sketch to probabilistically estimate the frequency of the new arrival compared to the victim, choosing whichever has the highest frequency. You may also find this project's simulator a useful resource, as LIRS is difficult to implement correctly due to subtleties in the paper.

@DmitryBespalov
Copy link
Owner

Thanks for sharing. TinyLFU looks interesting, indeed. I had Bloom filter in mind, too. Let's see if I'll come close to implementing those :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants