stalebeer v0.1.0

🍺 Yet another key/value cache where pairs can expire

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)

Repository

stalebeer

Owner
Statistic
  • 2
  • 0
  • 0
  • 0
  • 0
  • over 5 years ago
  • October 26, 2017
License

MIT License

Links
Synced at

Fri, 26 Apr 2024 17:38:07 GMT

Languages