Coder Social home page Coder Social logo

hash_cache's Introduction

The accompanying code largely fulfills the goals of the thread-safe expiring cache that was specified.

Please see the NOTES.md file to see my initial thinking. Note that the approach I outline there is the approach I ended up using.

Design goals: Write a thread safe caching implementation that has good 95th and 99th percentile latencies and also supports expiring keys

Approach:

  • Design a trait with the necesaary functions

  • Take the stdlib HashMap and wrap it behind an Arc for thread safety.

  • Implement the above trait for my custom type

    • Support generic K/V types, as long as they implement the same traits that HashMap requires, such as Eq and Hash.
    • Instead of just storing the Value in the HashMap, store a tuple of (expiration_time, Value), so that values that already expired can be ignored at retrieval time and lazily deleted

see the ISSUES.md file for a description of the limitations of this approach and partial implementation

Running:

To run the tests, use cargo test To run the performance benchmarks, use cargo to install criterion cargo intall cargo-criterion and then run cargo criterion documentation can be access with cargo doc --open

hash_cache's People

Contributors

tupshin avatar

Stargazers

 avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.