https://github.com/nicolab/crystal-lru-cache
:gem: key/value LRU cache that supports lifecycle, global size limit and expiration time.
https://github.com/nicolab/crystal-lru-cache
cache crystal crystal-lang kv kv-store lru lru-cache store
Last synced: 2 months ago
JSON representation
:gem: key/value LRU cache that supports lifecycle, global size limit and expiration time.
- Host: GitHub
- URL: https://github.com/nicolab/crystal-lru-cache
- Owner: Nicolab
- License: other
- Created: 2021-02-27T05:48:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-26T19:18:07.000Z (over 4 years ago)
- Last Synced: 2025-06-03T09:16:35.802Z (4 months ago)
- Topics: cache, crystal, crystal-lang, kv, kv-store, lru, lru-cache, store
- Language: Crystal
- Homepage: https://nicolab.github.io/crystal-lru-cache/
- Size: 41 KB
- Stars: 8
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# LRU cache
[](https://github.com/Nicolab/crystal-lru-cache/actions) [](https://github.com/Nicolab/crystal-lru-cache/releases) [](https://nicolab.github.io/crystal-lru-cache/)
:gem: Key/value LRU cache that supports lifecycle, global size limit and expiration time.
> LRU: Least Recently Used
_lru-cache_ supports lifecycle, a global item size limit and an expiration time can be set for each item independently.
If a *max_size* is defined, the LRU cache can only contain *max_size* items.
Beyond *max_size*, items are deleted from the oldest to the most recently used.A caching system is a vital part, it must be simple to use, reliable and efficient. _lru-cache_ is battle tested 👌
## Installation
1. Add the dependency to your `shard.yml`:
```yaml
dependencies:
lru-cache:
github: nicolab/crystal-lru-cache
version: ~> 1.0.3 # Check the latest version!
```2. Run `shards install`
## Usage
```crystal
require "lru-cache"cache = LRUCache(String, String).new(max_size: 10_000)
cache.set("hello", "Hello Crystal!")
puts cache.get("hello") # => "Hello Crystal!"# or
puts cache["hello"] # => "Hello Crystal!"puts cache.has?("hello") # => true
# Time limit
cache.set("hello", "Hello Crystal!", Time.utc + 1.hour)puts cache.expire_at "hello" # => Time.utc + 1.hour
# Deletes "hello" item
cache.delete "hello"# Empties the cache
cache.clear
```Lifecycle:
```crystal
require "lru-cache"class Cache(K, V) < LRUCache(K, V)
# Optional lifecycle method to be executed after setting an item (`add!` and `set`).
private def after_set(key : K, item : Tuple(V, Time?))
puts "after_set: #{key}"
pp item
end# Optional lifecycle method to be executed after deleting an item (`delete`).
private def after_delete(key : K, item : Tuple(V, Time?)?)
puts "after_delete: #{key}"
pp item
end# Optional lifecycle method to be executed after clearing all the cache (`clear`).
private def after_clear
puts "after_clear"
end
endcache = Cache(String, String).new(max_size: 10_000)
cache.set("hello", "Hello Crystal!")
cache.set("foo", "bar")
cache.delete("foo")
cache.clear
```📘 [API doc](https://nicolab.github.io/crystal-lru-cache/)
## Development
Install dev dependencies:
```sh
shards install
```Run:
```sh
crystal spec
```Clean before commit:
```sh
crystal tool format
./bin/ameba
```## Contributing
1. Fork it (https://github.com/Nicolab/crystal-lru-cache/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## LICENSE
[MIT](https://github.com/Nicolab/crystal-lru-cache/blob/master/LICENSE) (c) 2021, Nicolas Talle.
## Author
| [](https://github.com/sponsors/Nicolab) |
|---|
| [Nicolas Talle](https://github.com/sponsors/Nicolab) |
| [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PGRH4ZXP36GUC) |