hgzimmerman / rocket-file-cache

An in-memory file cache for the Rocket web framework
MIT License
22 stars 6 forks source link

Condense the file_map and file_stats_map #9

Closed hgzimmerman closed 6 years ago

hgzimmerman commented 6 years ago

The stats for priority, access times, and size can be stored in the file_map alongside the files themselves.

This will simplify the implementation, while probably not having a significant impact on performance.

hgzimmerman commented 6 years ago

Implemented.