Giter Site home page Giter Site logo

stalebeer's Introduction

StaleBeer

Yet another key/value cache where pairs can expire

Installation

Add this to your application's shard.yml:

dependencies:
  stalebeer:
    github: petoem/stalebeer

Usage

require "stalebeer"

cache = StaleBeer::Cache(String, Int32).new

cache.set "Zwickelbier", 250
cache.get "Zwickelbier" # => 250

cache.set "Dunkelbier", 300, 2.seconds
sleep 3
cache.get "Dunkelbier" # => nil

API

# Define types for key/values pairs
StaleBeer::Cache(K, V)

# Creates a new instance and sets the time after which key/value pairs expire
.new(@default_cache_time : Time::Span = 10.minutes)

# Returns the value for the key or `nil` if the key does not exist or is expired
.get(key : K) : V?

# Adds the key/value pair to the cache and sets the time it should live
.set(key : K, value : V, expiration : Time::Span = @default_cache_time)

# Resets the time to the given one and returns `true` if successful 
.refresh(key : K, time : Time::Span = @default_cache_time) : Bool

# Returns the remaining time the key has left
.expires(key : K) : Time::Span?

# Deletes all key/value pairs from the cache
.purge : Nil

# Returns an array of all keys in cache
.keys : Array(K)

# Returns the number of elements in the cache.
.size : Int32

Contributing

  1. Fork it ( https://github.com/petoem/stalebeer/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

  • petoem Michael Petö - creator, maintainer

License

Code licensed under the MIT License

Beer image from Twitter Emoji (Twemoji)

stalebeer's People

Contributors

petoem avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  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.