stalebeer v0.1.0
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
- Fork it ( https://github.com/petoem/stalebeer/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- 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
- 3
- 0
- 0
- 0
- 0
- almost 6 years ago
- October 26, 2017
License
MIT License
Links
Synced at
Fri, 22 Nov 2024 04:00:31 GMT
Languages