RealistikDash / GDPyS

A Geometry Dash Private Server made in Python.
GNU General Public License v3.0
27 stars 9 forks source link

Rewrite LRU Cache class #81

Open RealistikDash opened 3 years ago

RealistikDash commented 3 years ago

Since pretty much the beginning, the GDPyS project has been using the same class for its LRU cache. Now while it fits the purpose well, I was recently informed of a cool object in the collections library called deque. It takes any iterable (which includes dictionaries) and allows you to access them and also set the max size.

https://docs.python.org/3/library/collections.html#deque-objects