Sha256: 2137c1e0c9ee7969a30d8015148a0a58e4616534a771e927631790fdc5894146

Contents?: true

Size: 599 Bytes

Versions: 1

Compression:

Stored size: 599 Bytes

Contents

# ThreadCache

A simple thread-local cache store

## Install

Install it from rubygems.org in your terminal:

```sh
gem install thread_cache
```

Or via `Gemfile` in your project:

```sh
source 'https://rubygems.org'

gem 'thread_cache', '~> 1.1'
```

Or build and install the gem locally:

```sh
gem build thread_cache.gemspec
gem install thread_cache-1.1.0.gem
```

Require it in your Ruby code and the `ThreadCache` class will be available:

```rb
require 'thread_cache'
```

## Tests

Run tests with:

```sh
bundle exec rspec
```

## Linter

Check your code with:

```sh
bundle exec rubocop
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thread_cache-1.1.0 README.md