Skip to content

0xwontonsoup/Sol-MagicCounter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Most efficient Counter (LFU Cache) in Solidity and Foundry.

The Magic Counter supports the following operations all in O(1):

  • Increment and decrement the count of each key: increment(uint key) , decrement(uint key)
  • Find the keys with min and max count: getMinKeys() , getMaxKeys()

How is this useful ⚙️?

This is very useful for something like the Least Frequently Used cache (LFU)

For the LFU cache, you need to know the keys with min or max count at a certain point in the data stream in the most efficient way possible.

How Efficient 🚄?

Let’s take a look at time complexity:

For the non-technical readers: Time complexity measures the computational power, ranging from O(1), O(log(n), O(n), the lower the better.

As you can see, MagicCounter outperforms other functions in every category.

MagicCounter 🪄 Binary Search Tree Simple Counter
Increment O(1) 😃 O(log(n)) 😢 O(1) 😃
Decrement O(1) 😃 O(log(n)) 😢 O(1) 😃
GetMax O(1) 😃 O(1) 😃 O(n) 😠
GetMin O(1) 😃 O(1) 😃 O(n) 😠

How does this work🚂?

It works by creating a doubly LinkedList⛓️ of Bucket which tracks: its count, next & previous bucket, and the keys where all the keys in that bucket have the same count.

You can query the max or min Keys by looking at the head or tail bucket

LFU Cache

This approach has already been used by a lot of Operating Systems🤖for various use cases (cache, memory management, etc).

I thought it would be really cool to implement it using solidity.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Solidity 99.5%
  • Other 0.5%